SDL_mixer is a sample multi-channel audio mixer library. It supports any number of simultaneously playing channels of 16 bit stereo audio, plus a single channel of music, mixed by the popular FLAC, MikMod MOD, Timidity MIDI, Ogg Vorbis, and SMPEG MP3 libraries.

learn more… | top users | synonyms

0
votes
1answer
40 views

Gstreamer audiomixer implementation for audio conference , cancel user[1] contribution when streaming to user[1]

Below is the 'theoretical' pipeline that would cancel of particular user's audio contribution in an audio conference mixer. Theory goes like, we invert the user's audio samples from the original and ...
0
votes
2answers
24 views

Linking errors with SDL_mixer library

I'm working with the SDL and SDL_mixer library and am getting the following errors when I compile: .... game.cpp:(.text+0x88f): undefined reference to `Mix_OpenAudio' Jukebox.o: In function ...
0
votes
0answers
48 views

SDL_mixer - how to get music length?

I'm using Free Pascal and SDL_mixer.pas headers (originally from JEDI package). I can play music but can't find any function which return me music length (in seconds). Am I blind or JEDI header is ...
0
votes
0answers
46 views

How can I play sound on two separate sound cards with SDL?

I have two sound cards on my machine, and I'm developing an application playing sounds via SDL_mixer. I want some of these sounds played on first card and some on others. How can I achieve that in ...
1
vote
1answer
68 views

SDL_Mixer set sound position

I was wondering if there is a functionality in the SDL_Mixer lib to skip to a certain position in a wav file. I've found out the there is a function called Mix_SetMusicPosition but it won't work with ...
0
votes
0answers
206 views

Latest android SDL2 crashes on some phones when loading/playing sound files

I have developed a game with SDL2 that runs on all android devices with graphics acceleration. It runs fine on android phones and tablets too. My develop machine is: Windows 7 Ultimate 64, Latest ...
1
vote
1answer
185 views

Crashed SDL_Mixer once; now all programs that use SDL_Mixer crash on initialization

I was going through this tutorial on audio using SDL_mixer and everything went just fine. After that I decided to experiment, play, and learn through exploration, so I made a program that was very ...
0
votes
0answers
81 views

SDL_mix library No free channels available

I am getting a trouble in my embedded system when I am using SDL_mix library. I am testing this issue in 2 different hardware unit and one of them is getting crush after around 13 hours (which the ...
0
votes
0answers
99 views

SDL_Mixer Looping a sound at a certain time

I am creating a videogame in C using opengl with the support of SDL. I am using SDL_Mixer to play sounds as well as the music. But actually the control that SDL_Mixer gives me is low and there are ...
3
votes
2answers
166 views

SDL-Mixer audio stops upon starting Reactive-Banana input loop

I've been working on a game that uses multiple audio tracks whose volumes are adjusted in realtime based on mouse motion. I'm using SDl-Mixer for audio, and Reactive-Banana for the game in general. ...
0
votes
2answers
532 views

SDL_mixer 2 compilation broken in windows using visual studio express with SDL2

Im trying to compile SDL_mixer 2 with SDL2 checked out the latest code from : http://hg.libsdl.org/SDL_mixer also compiled with no problem SDL2 and SDL_image. when compiling SDL_mixer im getting the ...
2
votes
2answers
277 views

What's the difference between Mix_Chunk and Mix_Music?

When should I use Mix_Chunk instead of Mix_Music?
0
votes
0answers
333 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 ...
3
votes
1answer
318 views

SDL_Mixer: crash Mix_FreeMusic();

I'm working on my project in SDL, with SDL_mixer. Everything sounds ok, but when I attempt to quit, my app crash. I think that it's related to Mix_FreeMusic function (I figured that out after using a ...
1
vote
1answer
216 views

Splitting music file into chunks

How would you go about splitting a music file (preferably mp3) into chunks? I am using the SDL_mixer API. There may be some useful functions in there but I couldn't find any. The purpose is to use ...
5
votes
4answers
467 views

SDL_Mixer MIDI Volume issues on Windows Vista/7

I'm not actually well versed in C++ or SDL_Mixer, but I'm asking this question anyway on behalf on the Doom community. Put simply, nobody writing Doom source ports can seem to figure out how to ...
0
votes
1answer
159 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
214 views

playing encrypted files using SDL_Mixer

I have some encrypted mp3 files that I would like to play from my program using SDL_Mixer. All the documentation I've come across have only shown how to load music by specifying a path and file name, ...
1
vote
1answer
438 views

C++ SDL Mixer Mix_Music : incomplete type is not allowed

whenever I try to create Mix_Music instance, I get this error: "incomplete type is not allowed". However, I need to get the address of the pointer music before calling Mix_LoadMUS(file); Code: ...
0
votes
1answer
303 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?
1
vote
1answer
361 views

I have an unintended delay in playing a Mix_Chunk

So I am trying to learn SDL and creating a small game. When the user presses the space bar, it should play a sound. This works, but the sound takes about .5 seconds to play... How would I fix this? ...
4
votes
2answers
595 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
875 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 ...
10
votes
4answers
7k views

How to statically compile an SDL game on Windows

I have been trying to produce a statically linked "single binary" version of my game for windows. I want to link with sdl, sdl_image and sdl_mixer which in turn pull in a few support libraries. ...