Questions tagged [audiostreamer]
55 questions
1
vote
1 answer
Audiostreamer iOS class - ARC error
I'm trying to implement Matt Gallagher's AudioStreamer class and I'm getting 20+ errors on Audiostream.m file that are basically reading:
Cast of C pointer type 'void *' to Objective-C pointer type 'AudioStreamer *' requires a bridged cast
I'm new…

mnort9
- 1,810
- 3
- 30
- 54
0
votes
2 answers
Music in Java (start/stop)
Ok, so I am making a game and the music changes when you are in different regions or if there is an interruption, like with an AI.
So I have JUST learned how to make music showup in my program, and now I am trying to make it stop, but I am unsure…

Austin
- 3,010
- 23
- 62
- 97
0
votes
2 answers
AudioStreamer not working in background in iOS5. Any suggestions?
I have implemented Audiostreamer class of Matt Gallagher in my application and it works fine in ios4. But when I switched to iOS5 the background playing is not working in there.
I have added UIBackground Modes and Application does not run in…

thoughtbreaker
- 161
- 1
- 10
0
votes
2 answers
DigitalDJ / AudioStreamer not connect to streaming server
I downloaded the code DigitalDJ / AudioStreamer to use in a player I'm doing, here's the project that I downloaded: https://github.com/DigitalDJ/AudioStreamer
Have used this library before I decided to upgrade it supports multi-thread,
but when I…

jucajl
- 1,195
- 3
- 12
- 29
0
votes
2 answers
App is not working in the background mode
i'm working on an audio based app. audio is playing in the background but when the track changes it stops. and when again i open the app it resumes and plays the next track.
i'm using audio streamer in my app
all is working fine when app is in the…

user1206716
- 23
- 6
0
votes
2 answers
Multiple Instance of AudioStreamer if tap too fast in tableview
I'm having issues with the AudioStreamer which is driving me crazy. I have a tableview with songs from a remote server. When I click on a song it stream fine, but if I tap too fast I get multiple instance of AudioStreamer playing different songs.
I…

thenextmillionaire
- 431
- 4
- 7
0
votes
1 answer
Play AudioStreamer in Background mode in iPhone app
I was faced with the one problem.
AuidoStream doesn't works in Background mode.
So I added the "Required background modes" in Info.plist and selected "App plays audio".
But AuidioStream doesn't works in background mode yet.
In original, I had a…

DianWei
- 11
- 4
0
votes
1 answer
Media Length of content that AudioStreamer is playing
I am using AudioStreamer by mattgallagher to stream MP3 from server to iPhone app. I know how to get the progress of playing content, but how can I get the total duration of the media?

Raptor
- 53,206
- 45
- 230
- 366
0
votes
1 answer
How to identify AudioStreamer isBuffering state or As_Waiting_for_queue_to_start state?
Continue from previous question
I found that when I am having slow streaming from internet and I click next and Previous buttons then two or more song starts because when a new instance of AudioStreamer is created and State of AudioStreamer is…

DShah
- 9,768
- 11
- 71
- 127
0
votes
1 answer
While using next and previous functionality in AudioStreamer, two or more songs starts together
Here is the code for next and previous button
- (IBAction)nextPressed:(id)sender
{
Previousbutton.enabled=YES;
Nextbutton.enabled = NO;
NSLog(@"TOTAL TRACK:%d",TotalTrackCount);
// TrackCount = TotalTrackCount+1;
…

DShah
- 9,768
- 11
- 71
- 127
0
votes
1 answer
How could I stream Audio in iphone after a certain buffering amount occured?
I am using Matt Gallagher's AudioStreamer class for my audio streaming app. I need to make the audio stream without any interruption. Can anyone help me in this? I think there is something to do with the buffering size. As am new to iphone…

thoughtbreaker
- 161
- 1
- 10
0
votes
1 answer
How to resume audio when iphone is locked/unlocked and the application was in background
This is the case: I made an app using the Audio Streamer library that reads an audio file from a remote server, but I find a problem only if I do this:
Launch the app
Start a Podcast (audio stream)
Pause it
Put the app on the background (home…

TheCyberXP
- 915
- 1
- 12
- 24
0
votes
1 answer
Node http client reconnect after connection timeout
I've been using a package called icy that uses the Http Client from Node v8.11.3.
I'm connecting to a streamer Icecast server with continuous audio.
The code looks like the following:
icy.get(url, (res) => {
res.on('end', (e) =>…

Renato Francia
- 803
- 1
- 12
- 23
0
votes
2 answers
AudioStreamer appDelegate
I have two things concerning AudioStreamer and i hope I'm getting some clues here:
1. I have set up a UITabBarController and in my Appdelegate is a AudioStreamer-Object. Two views refer to the appDelegate.streamer. It it looks like that im getting…

endo.anaconda
- 2,449
- 4
- 29
- 55
0
votes
1 answer
AudioStreamer setDelegate is giving warning and crashing there in iphone
i am playing an audiostreamer using AudioStreamer class.
these three mothods are giving warnings that AudioStreamer may not respond to these methods
and carshing at this first method.
[streamer setDelegate:self];
[streamer…

rockey
- 638
- 4
- 16
- 34