Tagged Questions
3
votes
2answers
380 views
Running music as SDL_Mixer chunks
Currently, SDL_Mixer has two types of sound resources: chunks and music.
Apart from the API and supported formats limitations, are there any reasons not to load and play music as a SDL_Chunk and ...
1
vote
2answers
22 views
What's the difference between Mix_Chunk and Mix_Music?
When should I use Mix_Chunk instead of Mix_Music?
0
votes
0answers
67 views
SDL Mixer No available audio device
This is what I have and I keep getting no available audio devices when trying to run the program.
By the way I'm on ubuntu 11.04.
#include <iostream>
#include <stdio.h>
#include ...
0
votes
0answers
49 views
SDL_Mixer problem with sound being copied and played anew every second
I am on Windows 7 Ultimate 64-bit using VS2010 and version 1.2.11 of the SDL_Mixer files.
I'm able to load, play and pause chunks using my code (right now I'm using a three minute song to test it), ...
0
votes
0answers
63 views
I need a cross-platform C audio library, which can handle noncontinuous raw sample data and WAV files
"Noncontinuous raw sample data" in fact refers to the audio part of videos. I can only decode it little by little, but not all data at once.
Currently I use SDL's audio callback system to handle ...
0
votes
1answer
89 views
Audio bug crashing my C++ program
I'm writing a very simple game with C++ and SDL/SDL_mixer. The game uses some simple audio functions that play sound effects when something happens, and my program has been working fine until now. At ...
0
votes
1answer
165 views
SDL. Current music position
I load my music track using SDL_mixer function:
Mix_Music * SDLCALL Mix_LoadMUS(const char *file);
For synchronization with video I need to know current music position.
How can I determine this?
0
votes
2answers
572 views
Why would SDL_Mixer not play music for certain mp3s?
Why would SDL_Mixer not play music for certain mp3s?
I am utilizing SDL_Mixer for music playback in an application I am creating. On certain songs (entire albums actually), the music will simply not ...