gpt4 book ai didi

iphone - 在后台使用MPMoviePlayer播放mp3文件

转载 作者:行者123 更新时间:2023-12-03 00:57:21 26 4
gpt4 key购买 nike

我正在使用此MPMoviePlayerViewController从服务器播放.mp3文件,但无法正常工作。
这是我正在使用的代码。

NSString *path = @"http://myurl/music.mp3";
MPMoviePlayerViewController *mpviewController = [[MPMoviePlayerViewController alloc] initWithContentURL:[NSURL URLWithString:path]];
mpviewController.moviePlayer.movieSourceType = MPMovieSourceTypeStreaming;
[self presentModalViewController:mpviewController animated:YES];
[[mpviewController moviePlayer] play];

音频仅播放3或5秒钟,然后自动停止。不能找出问题所在。
您的建议将对您有所帮助。

谢谢。

最佳答案

通过此代码解决了它:)
愿它对某人有帮助。

NSString *path = @"http://myurl/mymusic.mp3";
mv = [[MPMoviePlayerController alloc] initWithContentURL:[NSURL URLWithString:path]];
mv.movieSourceType = MPMovieSourceTypeUnknown;
[self.view addSubview:mv.view];
[mv play];

关于iphone - 在后台使用MPMoviePlayer播放mp3文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12056469/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com