EricLinPixelforce
EricLinPixelforce
Hi @xiaowei-guan is [video_player_videohole](https://github.com/flutter-tizen/plugins/tree/master/packages/video_player_videohole) suitable for playing a content without DRM?
> > > @huluwa-dev The video_player_videohole and video_player_avplay only support TV device. > > > > > > Hi, thanks for the suggestion, I tried video_player_videohole, but some error occured,...
@xiaowei-guan I also tried to play it with video_player_avplayer. I got this error: ``` [E] (process:1400): GLib-CRITICAL **: 15:22:16.399: g_path_get_basename: assertion 'file_name != NULL' failed [E] (:1400): GStreamer-WARNING **: 15:22:16.621:...
@JSUYA @xiaowei-guan The TV is a Samsung TV, model code: UA75BU8000WXXY (the model name should be 75" BU8000), with Tizen 6.5 running on it.
> > As you are one of the contributors, do you know anybody who can help to make this plugin work with HW codec. SW codec is inefficient and produces...
@xiaowei-guan Thanks for the reply. Now I can play it with your code sample in a created new project. But still got error in my existing project. That's weird. I...
@xiaowei-guan I found the reason, if I call play after the video is initialized, the error will occur ``` _controller.initialize().then((_) { setState(() {}); _controller.play(); }); ``` But if I play...
Hi @xiaowei-guan Currently I am playing videos with video_player_videohole, I tried to detect if the video playing is finished with the following code ``` _videoPlayerController.addListener(() { print( "_videoPlayerController.value.position = ${_videoPlayerController.value.position.inSeconds},...
> Hello, @EricLinPixelforce , I have checked the position value, the value of position really cannot reach the end. Do you need a completed event from the player? Yes, that's...
> @EricLinPixelforce Please verify this new PR #766 Looks good, thanks. Have you tested it?