Art Break Life

Sculpture creations: Video and more photos…

Howdy! I’ve uploaded some videos of my latest sculpture creations in clay for fun. Please check them out; hope you enjoy them. Also trying to keep photos of my art (sculpture, paintings/sketches, and encaustics) all in one place at https://www.deviantart.com/fsartwork/ Pics of this and more are at https://www.deviantart.com/fsartwork/ However, since I’m not a paying member there I […]

Read More
Coding Education STEM

Adding sound to Python code

Python isn’t necessarily for multimedia programming, so only recently I looked up ways to add audio in a Python script. Turns out there are several ways to do that. They’re all really simple. Methods to add sound: 1. import winsound fname = “soundfile.wav” winsound.PlaySound(fname, winsound.SND_FILENAME) 2. import pygame pygame.init() s = pygame.mixer.Sound(“soundfile.wav”) # Start playback […]

Read More
Back To Top