如何播放从 nsurlconnection 接收到的数据

发布于 2024-11-29 11:23:17 字数 1150 浏览 0 评论 0原文

我尝试从受密码保护的给定 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文