File tree 3 files changed +7
-3
lines changed
packages/video_player/video_player
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ ## 2.1.12
2
+
3
+ * Update the video url in the readme code sample
4
+
1
5
## 2.1.11
2
6
3
7
* Remove references to the Android V1 embedding.
Original file line number Diff line number Diff line change @@ -75,7 +75,7 @@ class _VideoAppState extends State<VideoApp> {
75
75
void initState() {
76
76
super.initState();
77
77
_controller = VideoPlayerController.network(
78
- 'https://sample-videos.com/video123/mp4/720/big_buck_bunny_720p_20mb .mp4')
78
+ 'https://flutter.github.io/assets-for-api-docs/assets/videos/bee .mp4')
79
79
..initialize().then((_) {
80
80
// Ensure the first frame is shown after the video is initialized, even before the play button has been pressed.
81
81
setState(() {});
@@ -129,7 +129,7 @@ This is not complete as of now. You can contribute to this section by [opening a
129
129
### Playback speed
130
130
131
131
You can set the playback speed on your ` _controller ` (instance of ` VideoPlayerController ` ) by
132
- calling ` _controller.setPlaybackSpeed ` . ` setPlaybackSpeed ` takes a ` double ` speed value indicating
132
+ calling ` _controller.setPlaybackSpeed ` . ` setPlaybackSpeed ` takes a ` double ` speed value indicating
133
133
the rate of playback for your video.
134
134
For example, when given a value of ` 2.0 ` , your video will play at 2x the regular playback speed
135
135
and so on.
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ description: Flutter plugin for displaying inline video with other Flutter
3
3
widgets on Android, iOS, and web.
4
4
repository : https://github.com/flutter/plugins/tree/master/packages/video_player/video_player
5
5
issue_tracker : https://github.com/flutter/flutter/issues?q=is%3Aissue+is%3Aopen+label%3A%22p%3A+video_player%22
6
- version : 2.1.11
6
+ version : 2.1.12
7
7
8
8
environment :
9
9
sdk : " >=2.12.0 <3.0.0"
You can’t perform that action at this time.
0 commit comments