-
Notifications
You must be signed in to change notification settings - Fork 148
[Need help] #299
Copy link
Copy link
Open
Labels
help wantedExtra attention is neededExtra attention is neededwait confirmWaiting for developer confirmationWaiting for developer confirmation
Metadata
Metadata
Assignees
Labels
help wantedExtra attention is neededExtra attention is neededwait confirmWaiting for developer confirmationWaiting for developer confirmation
Hi,
I tried this library in my project to play ffmpeg pipe output video
_flutterFFmpegConfig.registerNewFFmpegPipe().then((pipePath) {
_flutterFFmpeg.execute('-i $inputFilePath -f flv -ar 44100 -ab 64000 -ac 1 -y $pipePath');
_controller.setNetworkDataSource(pipePath, autoPlay: true);
});
But the problem is , Whenever i call _controller.setNetworkDataSource, Before video is loaded, a black screen is appearing.Since i am calling setNetworkDataSource on seekbar it causing horrible blackout flickering while seeking.Can i avoid this black screen?