これを使用してサーバーからファイル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 秒だけ再生された後、自動的に停止します。何が問題なのかわかりません。あなたの提案は大きな助けになるでしょう。
ありがとうございました。