开发者

Seeking not allowed on media in blackberry video player

开发者 https://www.devze.com 2023-04-03 06:40 出处:网络
I have created a video player which retrieves data from the server and plays. The content type is Video/mp4.When I try to rewind the video I get ERROR:Seeking not allowed on media

I have created a video player which retrieves data from the server and plays. The content type is Video/mp4. When I try to rewind the video I get ERROR:Seeking not allowed on media

Per the API documentation, setMediaTime(int) does not support certain media types. What media types does the player support and is there any work around to rewind the vide开发者_如何学Goo?

rewind() {
   _player.setMediaTime(0);
   _player.start();
}
0

精彩评论

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