https://github.com/meetleev/flutter_any_video_player
The video_player plugin gives low level access for the video playback. Advanced video player based on video_player.
https://github.com/meetleev/flutter_any_video_player
flutter video-player widget
Last synced: 2 months ago
JSON representation
The video_player plugin gives low level access for the video playback. Advanced video player based on video_player.
- Host: GitHub
- URL: https://github.com/meetleev/flutter_any_video_player
- Owner: meetleev
- License: apache-2.0
- Created: 2022-08-26T12:51:57.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2024-11-03T13:42:18.000Z (8 months ago)
- Last Synced: 2024-12-25T16:41:15.279Z (7 months ago)
- Topics: flutter, video-player, widget
- Language: Dart
- Homepage: https://pub.dev/packages/any_video_player
- Size: 3.77 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# any_video_player
[](https://pub.dev/packages/any_video_player)
[](https://pub.dev/packages/any_video_player)The video_player plugin gives low level access for the video playback. Advanced video player based on video_player.
## Getting Started
Add the package to your `pubspec.yaml`:
```yaml
dependencies:
any_video_player:
```
## Features* support video player event.
* support frame by frame mode
* support fullscreen mode
* support set playbackSpeed
* When the video width is larger than the screen width, the bottom progress bar is automatically aligned to the height of the video after scaling.## Usage
```dart
AnyVideoPlayerController anyVideoPlayerController = AnyVideoPlayerController(
dataSource: VideoPlayerDataSource.network('https://flutter.github.io/assets-for-api-docs/assets/videos/butterfly.mp4'));final playerWidget = AnyVideoPlayer(
controller: anyVideoPlayerController,
);
```