Questions tagged [audiostreamer]

55 questions
8
votes
1 answer

Matt Gallagher's AudioStream: how to handle view controller pop

Well, this is my very first post ever -- between this website, personal blogs, and iPhoneDevSDK forums, I have always been able to figure things out on my own. I've been developing for iOS for about five months and have never asked for help outside…
Matthew Clark
  • 1,885
  • 21
  • 32
4
votes
1 answer

AudioSteamer's state sometimes doesn't change to AS_PLAYING

I use Matt Gallagher's AudioSteamer to implement the online music playing function, I found that sometimes the online music is playing but the audiostreamer's state doesn't change to AS_PLAYING, anybody meet the same problem? Can you tell me how…
Big_Krist
  • 41
  • 3
3
votes
2 answers

AudioStreamer doesn't show the correct play Time

i've one ios application that plays music by streaming and using the mattgallagher AudioStreamer library it doesn't show the real playtime and never stop play at 0 secs... Does anyone know why this happens?? Thanks a lot!
Jovem
  • 185
  • 2
  • 9
3
votes
1 answer

IPhone AudioStreamer doesn't work on background OS4

I use Matt Galagher's AudioStreamer http://github.com/mattgallagher/AudioStreamer/ It works fine, however how to make in work at background on IPhone OS4?
3
votes
1 answer

How to play .m3u8 file streaming url with AudioStreamer?

I have an iOS streaming app, that is integrated with AudioStreamer. It works fine for my streaming urls. But suddenly thay have change the streaming url into .m3u8 format. How can I use AudioStreamer for .m3u8 file url? I cant use MPMoviePlayer…
user2889249
  • 899
  • 2
  • 13
  • 22
3
votes
1 answer

iPhone : Can't streaming m3u8 url with AudioStreamer

I'm using Matt Gallagher's AudioStreamer to perform audio streaming in app, the URLis coming from server, right now its of type .m3u8 format, and the problem is ON, before it was of .mp3type and streamed normally. It showing an error "No audio data…
Hemang
  • 26,840
  • 19
  • 119
  • 186
3
votes
1 answer

AudioStreamer works on iPhone (Device) but crash on simulator

if (!streamer) { NSURL *url =[NSURL URLWithString:@"http://y1.eoews.com/assets/ringtones/2012/5/18/34049/oiuxsvnbtxks7a0tg6xpdo66exdhi8h0bplp7twp.mp3"]; AudioStreamer *tempStreamer = [[AudioStreamer alloc] initWithURL:url]; self.streamer…
Sing
  • 35
  • 6
3
votes
4 answers

Audiostreamer on iOS - Using with ARC

I'm using matt gallagaher's AudioStreamer class. I've used it before in a project before ARC came along and it worked fine. When I added the class to a project which uses ARC, I came across lots of errors which I could fix by adding __bridge…
Wasim
  • 4,953
  • 10
  • 52
  • 87
2
votes
1 answer

What are the possible causes for stream not writable exception?

What are the possible causes for Stream not Writable Exception when serializing custom object over TCP using Network Stream in C#. I am Sending the Mp3 data in the form of Packets.The Frame consists of Byte[] Buffer.I am Using Binary Formatter to…
Samie
  • 83
  • 2
  • 11
2
votes
2 answers

iPhone: Streaming music while application is in background

I have an app that streams music using AudioStreamer class by Matt Gallagher. This works fine as a background process except I want to be able to skip to the next song once the stream is finished. Unfortunately this part doesn't work. Initially I…
user491880
  • 4,709
  • 4
  • 28
  • 49
2
votes
1 answer

AudioStreamer playback from ear-speaker instead of bottom speaker on iPhone

I'm using Matt Gallagher's awesome AudioStreamer example to play an audio file via AudioSession. All works, except that on my iPhone 4 I get audio playback out of my bottom speaker, and not the ear speaker. I inserted the following code to no…
Newy
  • 38,977
  • 9
  • 43
  • 59
2
votes
0 answers

Continuous audio stream in NodeJS using Socket.io

I was wondering if there is a way to have socket.io and Nodejs work as a continuous streamer for Audio like Icecast. For example, one user can enter the site and hear the stream. After 10 seconds, another user can connect and will hear the same…
Renato Francia
  • 803
  • 1
  • 12
  • 23
2
votes
2 answers

AudioStreamer stops when switching between cellular and wifi

I'm using AudioStreamer and everything works fine, except when I switch between cellular and wifi network. It imediately stopps. I tested it without leaving the app by switching off the wifi network, so i can proof the problem is not caused when…
endo.anaconda
  • 2,449
  • 4
  • 29
  • 55
2
votes
1 answer

Using AudioFileStreamParseBytes to parse bytes by reading from a file does not call kAudioFileStreamProperty_ReadyToProducePackets

I am trying to parse bytes by opening a audio file (M4A), reading 2048 bytes in a loop and passing it to AudioFileStreamParseBytes. This does not call the callback with the property kAudioFileStreamProperty_ReadyToProducePackets. But the property…
Kris Subramanian
  • 1,850
  • 18
  • 15
2
votes
1 answer

Matt Gallagher's AudioStreamer play mp3 from offset before playing state

I did not found solution for one issue: how to play mp3 file from offset immideately? I can only play file then send -(void)seekToTime: but in this case sound begins and interrupts then begins from defined offset. I tried to apply seekToTime method…
user612856
  • 21
  • 2
1
2 3 4