video_player_tizen 2.4.6 video_player_tizen: ^2.4.6 copied to clipboard
Tizen implementation of the video_player plugin.
video_player_tizen #
The Tizen implementation of video_player
based on the Tizen Media Player API.
Supported devices #
This plugin is NOT supported on TV emulators. This plugin is supported on Galaxy Watch devices and Smart TVs running Tizen 4.0 or above.
Usage #
This package is not an endorsed implementation of video_player
. Therefore, you have to include video_player_tizen
alongside video_player
as dependencies in your pubspec.yaml
file.
dependencies:
video_player: ^2.4.2
video_player_tizen: ^2.4.6
Then you can import video_player
in your Dart code:
import 'package:video_player/video_player.dart';
For detailed usage, see https://pub.dev/packages/video_player#example.
Required privileges #
To use this plugin in a Tizen application, you may need to declare the following privileges in your tizen-manifest.xml
file.
<privileges>
<privilege>http://tizen.org/privilege/mediastorage</privilege>
<privilege>http://tizen.org/privilege/externalstorage</privilege>
<privilege>http://tizen.org/privilege/internet</privilege>
</privileges>
- The mediastorage privilege (
http://tizen.org/privilege/mediastorage
) is required to play video files located in the internal storage. - The externalstorage privilege (
http://tizen.org/privilege/externalstorage
) is required to play video files located in the external storage. - The internet privilege (
http://tizen.org/privilege/internet
) is required to play any URLs from network.
For detailed information on Tizen privileges, see Tizen Docs: API Privileges.
Limitations #
The following options are not supported on Tizen.
- The
httpHeaders
option ofVideoPlayerController.network
VideoPlayerOptions.allowBackgroundPlayback
VideoPlayerOptions.mixWithOthers
This plugin has some limitations on TV devices.
- The
setPlaybackSpeed
method will fail if triggered within last 3 seconds. - The playback speed will reset to 1.0 when video is replayed in loop mode.
- The
seekTo
method works only when playback speed is 1.0, and it sets video position to the nearest key frame which may differ from the passed argument.