Okay here's my code:
import pygame
pygame.init()
pygame.mixer.init()
track1 = pygame.mixer.Sound("boink.ogg")
track1.play()
So I am using a mac and I used homebrew to download the pygame 64 bit version. Everything works well, but when I try to make sounds using the mixer, all that I hear is a clicking sound. Has anyone experienced this in the past that may be able to help?
Also I have tried this with many different ogg files, so it is not something wrong with the sound file.
Can you try this?
import pygame
import time
pygame.mixer.init(frequency=22050, size=-16, channels=2, buffer=4096)
song = pygame.mixer.Sound('boink.ogg')
song.play()
time.sleep(song.get_length())
Not to sound crude, but have you tried playing a file without using any kind of object? , just play simple sound file and see if it works? I usually start that way.
Here is what I tried as basics (and it works). Do mind, this is on windows as I do not own a MAC, but it will provide insight into if at all file is playing.
Also, try playing different format files (wav , mp3 etc).
import pygame
pygame.mixer.init()
pygame.mixer.music.load('boink.ogg')
pygame.mixer.music.play(0)
I had the same click when playing an mp3 with the pygame.mixer.Sound and .play code.
This worked for me:
pygame.mixer.pre_init()
#then instantiate and start your controller
pygame.mixer.init()
#then in your button click or wherever
pygame.mixer.music.load('mysound.mp3')
pygame.mixer.music.play()
A few things you can try:
Make sure that the path to your sound file is correct.
Turns out Pygame's pygame.mixer.Sound() only accepts Mono WAV sound files.
for my second point, you can go here to convert your ogg file to mono wav files.
Related
I am trying to play an audio file but it only makes the windows alert sound when I open/run the code. How do I fix this?
EDIT: nothing on winsound works it just makes the windows alert noise (windows background.wav) right click on the sound button (bottom right), click sounds, click on the first one and press test. that's the noise.
code:
import winsound
winsound.PlaySound('music.mp3', winsound.SND_ASYNC)
The winsound.PlaySound() function is just a thin wrapper around the PlaySound() Win32 API, which only plays waveform audios (WAV) and cannot recognize MP3 files.
If you're not willing to convert the file to WAV manually, you may use the MCI components.
The third-party playsound library provides a concise example for its usage, you can either install it or learn from its source code.
by using pygame I found:
from pygame import mixer # Load the required library
mixer.init()
mixer.music.load('music.mp3')
mixer.music.play()
which works fine
I'm writing a simple script that I would like to have notify me of an event with a sound file on my computer.
While I can play a sound file by doing something like:
import webbrowser
webbrowser.open("C:\Users\User\Desktop\Test\Test.mp3")
That will open up VLC or whatever media player I have, which could alt-tab me / interfere with whatever I was doing.
Is there a way to play the sound file without anything popping up? A perfect example of what I am looking to do would be using something like making a beep sound using winsound as such:
import winsound
Freq = 600 # Set Frequency To 600 Hertz
Dur = 800 # Set Duration To 800 ms == 0.8 second(s)
winsound.Beep(Freq,Dur)
Which makes a quick beeping sound without opening any new windows.
This does the trick.
Firstly, install pyglet:
pip install pyglet
Now download and install AVbin from here
Do check where AVbin is installed as now you have to go to the installation directory and copy the avbin.dll to the directory where you saved your code.
Finally,run this code:
import pyglet
pyglet.lib.load_library('avbin')
pyglet.have_avbin=True
song = pyglet.media.load('filename.mp3')#your file name
song.play()
pyglet.app.run()
Make sure your music file is in the same directory as your code .py file.
Did this from my experience and it worked.
Solved by #eryksun in the comments with the solution of:
winsound.PlaySound(wav_path, winsound.SND_FILENAME | winsound.SND_ASYNC)
This was the best solution for I've seen for what I was looking for. It uses default libraries, only takes up a single straight-forward line, and does what I need it to.
You should use pygame to solve it
def music(music):
pygame.mixer.init()
pygame.mixer.music.load(music)
pygame.mixer.music.play()
it will play sound without opening vlc media player
search google for more otherwise this will be enough to know
My PyGame mixer in 2.7 won't work with the sound option. I can make it work with mixer.music but not with mixer.sound, with mixer.sound it makes a small ticking noise and then stops. Code:
import pygame
pygame.mixer.init(frequency=22050, size=-16, channels=2, buffer=4096)
song = pygame.mixer.Sound("song.mp3")
pygame.mixer.Sound.play(song)
No error, it just won't play and gives a small ticking noise.
On windows 7-x64 btw.
Usually, Pygame will not play mp3 files. You could test to see if .wav and .ogg files will play first, to make sure your code is correct (based on what you pasted, it seems to be right). I suggest converting your mp3 sounds to ogg for Pygame.
you just created an object called song.
instead of "pygame.mixer.Sound.play(song)" try this:
song.play()
This can easily be solved because your song file should be loaded as music, not as a normal sound. Therefore, the following code makes it work perfectly:
import pygame
pygame.mixer.init(frequency=22050, size=-16, channels=2, buffer=4096)
pygame.mixer.music.load("song.mp3")
pygame.mixer.music.play()
Pygame does play mp3 files. I had the same problem but I found out the solution:
if you saved your mp3 file as 'filename.mp3', and you wrote down the .mp3 file extension yourself, then the filename in pygame's pygame.mixer.music.load() function must be written as 'filename.mp3.mp3', because python expects you to add the .mp3. Sometimes the .mp3 is already included in the filename if you manually saved it as that.
Therefore, try this:
pygame.mixer.music.load('filename.mp3.mp3')
python is playing the sound in slowmotion.bitrate of the fle.
Below is the code:
import pygame,time
pygame.mixer.init()
pygame.mixer.music.load('backgroundmusic.mp3')
pygame.mixer.music.play(-1)
time.sleep(20)
pygame.mixer.music.stop()
When you export a sound file to mp3, there is a certain bit rate. This is basically how fast the sound plays. If the bit rate is wrong, the sound plays too fast or too slow. Pygame.mixer is set to play things at the bit rate that will already be default on the program that you save the file on, but if you downloaded the file online this could be difficult. It is best to just set the bitrate to the one of the file using the "size" argument of mixer.init(). However there may be another problem: While pygame.music may support mp3 files, I beleive pygame.mixer is intended for wav files. All this being said, your script doesn't have any issues, but it would be best to save it as a .wav file.
For playing my sounds I have this working code:
import pygame
pygame.init()
pygame.mixer.pre_init(44100, 16, 2)
screen = pygame.display.set_mode([100,100])
print(pygame.mixer.get_num_channels(),"cannels")
sounda = pygame.mixer.Sound("track.mp3")
print("Length",sounda.get_length())
print("Volume",sounda.get_volume())
channela = sounda.play()
while channela.get_busy():
pygame.time.delay(100)
pygame.quit()
You can see I am mostly using .mp3 files.
But my problem is that it can play some sounds but others result the error which says that the sound can not be loaded. Are there any differences between mp3 files and do you know how to solve this problem?
Thanks in advance
So I have found out there can be differences in one sound format so that pygame has problems with it. With the program ocenaudio I can manipulate and save my sounds in multiple types of the .wav format. Pygame can deal with one of them.
But loading music has never been a problem...
If Pygame is not loading your audio, there are 3 possibilities.
Possibility 1:
Pygame cannot find your file. When saying the name of a file, make sure either the sound file is in the same directory as your program file, or you can give the entire file path instead (like '/home/person/sound.mp3', instead of just 'sound.mp3'.)
Possibility 2:
Your file is the wrong format. Though it is called .mp3, it may be a different type. Try using an audio conversion program.
Possibility 3:
Pygame just plain cannot read the file. Pygame works best with .ogg files, but sometimes has issues with other types. Just use an audio conversion program to convert it to .ogg, and it might work.
If none of these work, giving an exact error message would be appreciated.