I want to change the playback speed of the video with the flutter video_player package and save it to the gallery. I changed the playback speed with the property controller.setPlaybackSpeed but I couldn't find how to get the change information of the modified video.
Slider(
value: blur, min: 1, max: 5, onChanged: (value) {
setState(() {
blur = value;
_controller.setPlaybackSpeed(blur);
});
},) ,
I tried to find it with controller.dataSource and controller.value properties but I couldn't find it