How to play a default sound using Python?[SOLVED]

Issues and / or general discussion relating to Puppy


Moderator: Forum moderators

Post Reply
gabtech
Posts: 64
Joined: Sun Jul 19, 2020 12:29 pm
Been thanked: 2 times

How to play a default sound using Python?[SOLVED]

Post by gabtech »

Hello puppians,
How do you play default sound in puppy using python?

Last edited by gabtech on Fri Jan 17, 2025 4:15 pm, edited 2 times in total.

gabtech :thumbup2:

User avatar
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?

Post by bigpup »

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 :o

User avatar
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?

Post by rockedge »

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')
gabtech
Posts: 64
Joined: Sun Jul 19, 2020 12:29 pm
Been thanked: 2 times

Re: How to play a default sound using Python?[SOLVED]

Post by gabtech »

@rockedge Thanks for the code.

gabtech :thumbup2:

User avatar
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]

Post by mikewalsh »

@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... :roll:

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. :|

User avatar
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]

Post by fredx181 »

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... :roll:

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 ?

Post Reply

Return to “Users Help”