如何播放从 nsurlconnection 接收到的数据
我尝试从受密码保护的给定 URL 播放音频。我已经完成了身份验证,但是如何播放之后收到的数据呢?
- (void)viewDidLoad
{
NSString *escapedValue = @"http://www.chhotabheem.com/applegga/chhota_bheem_music_lyrics.mp3";
//NSURL *url = [NSURL URLWithString:escapedValue];
zipFileConnection = [[[NSURLConnection alloc] initWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:escapedValue]] delegate:self] autorelease];
[super viewDidLoad];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
NSLog(@"didReceiveData");
NSLog(@"%@",data);
HERE HOW TO PLAY THE RECEIVED DATA
//player = [[AudioStreamer alloc] initWithURL:url];
// [player start];
}
-(void)connection:(NSURLConnection *)aConnection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
NSLog(@"didReceiveAuthenticationChallenge");
NSURLCredential *newCredential;
newCredential = [NSURLCredential credentialWithUser:@"ggaindia" password:@"apple@gga" persistence:NSURLCredentialPersistenceNone];
[[challenge sender] useCredential:newCredential forAuthenticationChallenge:challenge];
}
I try to play the audio from a given URL which is password protected. I've got the authentication working, but how do I play the data received after that?
- (void)viewDidLoad
{
NSString *escapedValue = @"http://www.chhotabheem.com/applegga/chhota_bheem_music_lyrics.mp3";
//NSURL *url = [NSURL URLWithString:escapedValue];
zipFileConnection = [[[NSURLConnection alloc] initWithRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:escapedValue]] delegate:self] autorelease];
[super viewDidLoad];
}
- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data
{
NSLog(@"didReceiveData");
NSLog(@"%@",data);
HERE HOW TO PLAY THE RECEIVED DATA
//player = [[AudioStreamer alloc] initWithURL:url];
// [player start];
}
-(void)connection:(NSURLConnection *)aConnection didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge
{
NSLog(@"didReceiveAuthenticationChallenge");
NSURLCredential *newCredential;
newCredential = [NSURLCredential credentialWithUser:@"ggaindia" password:@"apple@gga" persistence:NSURLCredentialPersistenceNone];
[[challenge sender] useCredential:newCredential forAuthenticationChallenge:challenge];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论