0
votes
1answer
20 views
What’s the difference between all these audio frameworks?
In the documentation I see several frameworks for audio. All of them seem to be targeted at playing and recording audio. So I wonder what the big differences are between these?
Audio Toolbox, Audio …
0
votes
1answer
13 views
How to play looping sound with OpenAL on iPhone
I'm following a tutorial about playing sound with OpenAL. Now everything works fine except I can't make the sound looping. I believe that I've used AL_LOOPING for the source. Now it can only play once …
0
votes
0answers
15 views
How to play multiple sounds in AS2 or AS3 with a custom delay?
I need to realize a multiple-track player. The user can upload multiple tracks and mix (play them together). My problem is to allow the user to define an exact start position of each track to allow a …
0
votes
3answers
53 views
Continuous Streaming PCM data in C++?
I have a stream of PCM audio captured from a cell phone, and I want to play it.
I am trying to find a lightweight method of playing this audio in C++.
I can already slap on a wave header and create …
0
votes
1answer
22 views
Html: play audio without controls?
I need to play a mp3 audio file when the user clicks on a image. I only want to audio to play, i.e. there should be no controls, widgets, etc. Nor should the browser launch an external application.
…
1
vote
4answers
40 views
audio to 8-bit text sample conversion
Hello community. I have an interesting question today.
I need to convert some pokemon audio files to a list of 8-bit samples (0-255 values). I am writing an assembly routine on the MC6800 chipset …
0
votes
1answer
29 views
How to find out ALSA audio device capabilities programmatically in Linux without opening the device
How do I find out the capabilities of ALSA devices without opening the device first? Problem is, I need to supply the parameters to the snd_pcm_open() function to use the test functions which to me is …
0
votes
1answer
20 views
Preload sounds played via iPhone AudioServices
I built an iPhone app using AudioServices to play short sounds. The first time a sound is played, there's a delay of half a second or so while the sound loads before it plays. This definitely makes …
0
votes
0answers
16 views
GUI Control For Audio Presentation
I need GUI control for audio file presentation. The language is not very important but it should run on windows platform.
I should be able to :-
load the file
play the sound
put and move markers …
0
votes
2answers
49 views
Implementing a audio visualizer in WPF
I wish to implement a audio visualizer widget (similar to what Winamp has) in WPF. How would I approach this problem?
0
votes
0answers
32 views
Playback MP3 using RemoteIO and AudioUnits on iPhone… possible?
I want to playback an mp3 rather than an uncompressed file using RemoteIO / AudioUnit.
Using uncompressed files obviously uses far too much disk space (30MB vs 3MB for mp3).
Is this even possible? If …
0
votes
1answer
34 views
Does Android Chrome supports <audio /> tag?
Is it possible to play continuous audio stream (MP3 / AAC) in Android browser using <audio /> tag?
If you're not sure, could you at least recommend some good testing page containing and using …
0
votes
1answer
44 views
I’m looking for a cross-platform Python library that can play MP3 and OGG and support ALSA or similar.
There are several different audio libraries, however, none of them meet my exact needs:
- It needs to be cross-platform.
- It needs to be able to use the ALSA, PulseAudio or any other common default …
0
votes
2answers
40 views
Java: Master Gain not supported exception
Hi,
In linux this code doesn't work: I added two lines
// Added two lines.
DataLine.Info info = new DataLine.Info( SourceDataLine.class, audioFormat );
SourceDataLine dataLine = (SourceDataLine) …
8
votes
4answers
236 views
Absolute beginners guide to working with audio in C/C++ ?
I've always been curious about audio conversion software, but I have never seen a proper explanation from a beginners point of view as to how to write a simple program that converts for example, a mp3 …
