Questions tagged [audiostreamer]
55 questions
1
vote
1 answer
AudioStreamer slider restarting music
I'm using the AudioStreamer class from mattgallagher for quite a few time but only now I am implementing the progress slider with the seconds info.
The label with timePlayed/totalDuration is working like a glove, and the seeker progress is being…

Andre Cytryn
- 2,506
- 4
- 28
- 43
1
vote
1 answer
Audio queue starts failed
I have encountered that while streaming song with AudioStreamer following error occured:
Audio queue start failed. err: hwiu 1752656245
this error occured in the following code
err = AudioQueueStart(audioQueue, NULL);
if (err)
{
[self…

DShah
- 9,768
- 11
- 71
- 127
1
vote
1 answer
AudioStreamer and AVAudioRecorder don't work together
I am currently using Matt Gallagher's AudioStreamer (which works great!) but when I try to stop the playback and completely remove the streamer, my recording fails. I am unable to get something to record in anyway after I start using the streamer…

Matthew Knippen
- 1,048
- 9
- 22
1
vote
2 answers
iPhone Audio Streaming
I would like to know how to start creating an Audio Streaming Player to iPhone (a radio streaming).
I read that I have to use AudioToolbox and AudioQueue. Is there any easy solution? Anybody has an advice?
Thanks!

Raphael Petegrosso
- 3,870
- 2
- 24
- 27
1
vote
1 answer
Icecast Updating title metadata
I've been playing with Icecast with Ezstream for a while and found this error while uploading a song.
I've been using multer-s3 to upload songs into s3 and read them from a mounted port on a server. The problem comes when last song that was…

Renato Francia
- 803
- 1
- 12
- 23
1
vote
1 answer
passing .m3u8 file to AudioStreamer iOS
Can any one suggest me a m3u8 parser that works on iOS 10. I used this but its giving me errors
M3U8_BASE_URL undecleared indentifier, No visible interface declared
in NSString for isExtendedM3Ufile these kind of errors,, more than 17
in…

user1960169
- 3,533
- 12
- 39
- 61
1
vote
0 answers
How to implement airplay for mac application to change sound output source while streaming?
I am new to mac development,currently I am working an app that streams video and audio files hosted on the web.How can I implement airplay feature to change the sound output source ? I am using JKAudioManager to get all the airplay devices and…

Devesh
- 193
- 1
- 1
- 8
1
vote
1 answer
iPhone Linker Error (AudioStreamer)
I'm using Matt Gallagher's Audio Streaming Project. I downloaded the code/project and it runs/compiles/links just fine.
The problem is when I try to integrate the AudioStreamer class into my own project. I added all the necessary frameworks and…

nebs
- 4,939
- 9
- 41
- 70
1
vote
1 answer
Progressive download using Matt Gallagher's audio streamer
I'm a completely n00b when talking about audio. I'm using Matt Gallagher's audio streamer on my radio app. How may I use progressive download? Also, ExtAudioFile is a good idea too :)
Edit:
Used this:
length = CFReadStreamRead(stream, bytes,…

Fernando Valente
- 160
- 2
- 10
1
vote
0 answers
Qt QAudioInput how to send a fixed number of samples
I'm tryng to send some audio stream from my Qt application to an other device with the udp protocol. My problem is that the target device wants a fixed number of samples(in my case 320) for every packet it receives.
To do that I think I must use the…

user3532190
- 45
- 1
- 8
1
vote
0 answers
AAC write stream to file error
I trying to record aac audio stream to file.
i creating a AudioFileID
AudioStreamBasicDescription asbd2;
memset(&asbd2, 0, sizeof(asbd2));
asbd2.mSampleRate = [[AVAudioSession sharedInstance] sampleRate];
asbd2.mChannelsPerFrame =…

Sergey92zp
- 589
- 4
- 22
1
vote
0 answers
AudioStreamer not buffering in ios7
I have a live radio streaming application developed in ios 5.1. I have used AudioStreamer class for the streaming and MPMusicPlayerController.now its working fine in ios 5,and 6 but in 7 its not buffering. what is there any reason for this? Can…

user2889249
- 899
- 2
- 13
- 22
1
vote
3 answers
Is it possible to extend Matt Gallagher's AudioStreamer Framework to play other formats than MP3?
What I need are at least these formats (or at least some of them):
Ogg / Vorbis
WMA over MMS/ASF
AAC / AAC+
Matt seems to use some of the Apple frameworks for audio playback, so I wonder if it would be too hard to add support for additional…

openfrog
- 40,201
- 65
- 225
- 373
1
vote
1 answer
remoteControlReceivedWithEvent on iOS with cordova plugin
I have a audio player app, that is created with Cordova and native AudioStreamer plugin calls.. Everything works perfectly, BUT, now i want to use the remoteControlReceivedWithEvent event to use the native remote controle when the app is in the…

pkdkk
- 3,905
- 8
- 44
- 69
1
vote
1 answer
iPhone AudioStreamer AudioQueue Realtime FFT
I'm using Matt Gallagher's AudioStreamer to play a mp3 audio stream. Now I want to do FFT in realtime and visualize the frequencies using OpenGL ES on the iPhone.
I'm wondering where to catch the audio data and pass it to my…

benjamin.ludwig
- 1,575
- 18
- 28