Skip to content

Commit

Permalink
Add start position in player options when creating player
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaowei-guan committed Oct 28, 2024
1 parent 97bc32a commit fd0ed6e
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
4 changes: 4 additions & 0 deletions packages/video_player_avplay/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 0.5.2

* Add start position in player options when creating player. This is useful for resuming playback from last viewed position.

## 0.5.1

* Fix getVideoTracks out of bounds issue.
Expand Down
2 changes: 1 addition & 1 deletion packages/video_player_avplay/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ To use this package, add `video_player_avplay` as a dependency in your `pubspec.

```yaml
dependencies:
video_player_avplay: ^0.5.1
video_player_avplay: ^0.5.2
```
Then you can import `video_player_avplay` in your Dart code:
Expand Down
2 changes: 1 addition & 1 deletion packages/video_player_avplay/pubspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: video_player_avplay
description: Flutter plugin for displaying inline video on Tizen TV devices.
homepage: https://github.com/flutter-tizen/plugins
repository: https://github.com/flutter-tizen/plugins/tree/master/packages/video_player_avplay
version: 0.5.1
version: 0.5.2

environment:
sdk: ">=3.1.0 <4.0.0"
Expand Down
7 changes: 7 additions & 0 deletions packages/video_player_avplay/tizen/src/plus_player.cc
Original file line number Diff line number Diff line change
Expand Up @@ -137,6 +137,13 @@ int64_t PlusPlayer::Create(const std::string &uri,
is_prebuffer_mode_ = true;
}

int64_t start_position = flutter_common::GetValue(
create_message.player_options(), "startPosition", 0);
if (start_position > 0) {
LOG_INFO("[PlusPlayer] Start position: %lld", start_position);
Seek(player_, start_position);
}

if (!PrepareAsync(player_)) {
LOG_ERROR("[PlusPlayer] Player fail to prepare.");
return -1;
Expand Down

0 comments on commit fd0ed6e

Please sign in to comment.