The ogg-vorbis tag has no wiki summary.
1
vote
0answers
47 views
pygame App stops when playing OGG files after building with cx_Freeze
I've built a sample game using pygame and wanted to mess around with packaging it up. I found cx_Freeze which seems to do the trick, except for when it comes to playing OGG files.
If I run the app ...
0
votes
0answers
172 views
I'm using OpenAL, trying to load a .ogg file and having .dll troubles
I'm using OpenAL for my game's music, and it loads .wav files by default, but to load in Ogg files I had to download and setup a few .dlls and lib files. I have fixed all errors with dlls except for ...
1
vote
2answers
367 views
Acceptable sound quality: stereo needed for an Android game?
I have various simple short sound effects (damage sound, dying sound, thunderbolt, fanfare, breaking) for a game that is developed for Android currently.
I use OGG files: 96kbps VBR, 44.1KHz, 2 ...
1
vote
1answer
412 views
Python/PyGame mixer.music playback of OGG file has intermittent clicking sound - how to proceed?
I have a class within my python + pygame game that handles sound - it worked well until I tried use pygame.mixer.music to switch between streaming .ogg music files. The class switches between them on ...
7
votes
1answer
1k views
Difference between Vorbis OGG and M4A/MP4/AAC?
From what i know m4a and aac are the same thing with mp4 allowing video while the former only allows audio.
Whats the difference between vorbis ogg and m4a? I looked it up and it seems that m4a/aac ...
6
votes
2answers
691 views
How to loop over a part of an ogg vorbis stream?
I'm successfully streaming ogg vorbis data to openAL with the Java library JOrbis, but now I want to loop over a part of this stream, e.g from 30" to 1'30".
I thought that at the end of the loop, I ...