Skip to content

Commit

Permalink
Fix readme
Browse files Browse the repository at this point in the history
  • Loading branch information
JSUYA committed Sep 13, 2024
1 parent b86c186 commit 215a6d6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion packages/video_player/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,4 +59,3 @@ This plugin has some limitations on TV devices.
- The `setPlaybackSpeed` method will fail if triggered within the last 3 seconds of the video.
- The playback speed will reset to 1.0 when the video is replayed in loop mode.
- The `seekTo` method works only when the playback speed is 1.0, and it sets the video position to the nearest keyframe, not the exact value passed.
- The live streaming content does not support `seekTo` and `duration` is fixed to 1.
4 changes: 2 additions & 2 deletions packages/video_player/tizen/src/video_player.cc
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,7 @@ void VideoPlayer::OnPrepared(void *data) {
}

void VideoPlayer::OnBuffering(int percent, void *data) {
// LOG_DEBUG("[VideoPlayer] percent: %d", percent);
LOG_DEBUG("[VideoPlayer] percent: %d", percent);
}

void VideoPlayer::OnSeekCompleted(void *data) {
Expand Down Expand Up @@ -677,4 +677,4 @@ bool VideoPlayer::IsLive() {
}
is_live_ = is_live != 0;
return is_live_;
}
}

0 comments on commit 215a6d6

Please sign in to comment.