I am using objectAL to stream PCM data,
from the sample code i have tried or play the online CGI streaming data,
ALSource *source = [[ALSource source] retain];
ALBuffer *buffer = [[[OpenALManager sharedInstance] bufferFromUrl:[NSURL URLWithString:[[OpenALManager sharedInstance]bufferAsyncFromUrl:[NSURL URLWithString:@"someURL/somedata.cgi"] target:self selector:@selector(recievedBufferData:)]]] retain];
source.position = alpoint(planet.position.x, planet.position.y, 0);
source.referenceDistance = 50;
[OpenALManager sharedInstance].currentContext.listener.position = alpoint(rocketShip.position.x, rocketShip.position.y, 0);
self.isTouchEnabled = YES;
[source play:buffer loop:YES];
}
-(void)recievedBufferData:(id)recievedData{
NSLog(@"recieved");
}
I am getting the following error
OAL Error: -[OALAudioFile initWithUrl:reduceToMono:]: Could not open url some url/somefile.cgi (error code 0xffffffd5: Unknown ext audio error)
But The method recievedBufferData: is called only once
I cannot able to play the .cgi file, can anyone suggest me how to play the .cgi file in iphone.