Hello puppians,
How do you play default sound in puppy using python?
How to play a default sound using Python?[SOLVED]
Moderator: Forum moderators
- bigpup
- Moderator
- Posts: 7517
- Joined: Tue Jul 14, 2020 11:19 pm
- Location: Earth, South Eastern U.S.
- Has thanked: 1022 times
- Been thanked: 1682 times
Re: How to play a default sound using Python?
What default sound?
Why do you want to use Python?
Give a little information on what you want to actually do?
The things you do not tell us, are usually the clue to fixing the problem.
When I was a kid, I wanted to be older.
This is not what I expected
- rockedge
- Site Admin
- Posts: 7038
- Joined: Mon Dec 02, 2019 1:38 am
- Location: Connecticut,U.S.A.
- Has thanked: 3159 times
- Been thanked: 2941 times
- Contact:
Re: How to play a default sound using Python?
This is a standard library and example code. I've used variations of it:
Code: Select all
import simpleaudio as sa
wave_obj = sa.WaveObject.from_wave_file("path/to/your/sound.wav")
play_obj = wave_obj.play()
play_obj.wait_done()
or another super simple example with the playsound module
Code: Select all
# import required module
from playsound import playsound
# for playing note.mp3 file
playsound('/path/note.mp3')
print('playing sound using playsound')
- mikewalsh
- Moderator
- Posts: 6529
- Joined: Tue Dec 03, 2019 1:40 pm
- Location: King's Lynn, UK
- Has thanked: 997 times
- Been thanked: 2173 times
Re: How to play a default sound using Python?[SOLVED]
@bigpup :-
This guy only posts once in a blue moon, and when he does, it's always with the absolute minimum of detail. It's no use asking for more information, because you won't get any.
It's like trying to pilot a spaceship with a coupla sticks and a bit of string...
Me, I do my startup & shut-down jingles with amixer & mplayer:-
Code: Select all
#!/bin/sh
amixer -c 0 -- sset Master playback -36dB
mplayer /usr/share/audio/logon-1.mp3 &
Mike.
- fredx181
- Posts: 3386
- Joined: Tue Dec 03, 2019 1:49 pm
- Location: holland
- Has thanked: 438 times
- Been thanked: 1485 times
- Contact:
Re: How to play a default sound using Python?[SOLVED]
mikewalsh wrote: Fri Jan 17, 2025 7:22 pm@bigpup :-
This guy only posts once in a blue moon, and when he does, it's always with the absolute minimum of detail. It's no use asking for more information, because you won't get any.
It's like trying to pilot a spaceship with a coupla sticks and a bit of string...
Me, I do my startup & shut-down jingles with amixer & mplayer:-
Code: Select all
#!/bin/sh amixer -c 0 -- sset Master playback -36dB mplayer /usr/share/audio/logon-1.mp3 &
Mike.
rockedge answered and gabtech thanked him, so why comment ?