开发者

Iphone http streaming video problem

开发者 https://www.devze.com 2022-12-14 03:58 出处:网络
When our application play new url of http streaming video , mpmovieplayer show previous image of video during loading new video from new url .

When our application play new url of http streaming video , mpmovieplayer show previous image of video during loading new video from new url . In detail , it show last part of previous video then show first part of previous that video again ( all captured image ) then it plays new url http streaming . We need your advice how to solve t开发者_如何学运维his . Thanks in advance .


This is a known bug in the MPMoviePlayerController. You can work around it by adding the following to your MPMoviePlayerPlaybackDidFinishNotification callback:

[myMoviePlayerController stop];
[myMoviePlayerController setInitialPlaybackTime: -1.0];
0

精彩评论

暂无评论...
验证码 换一张
取 消