void initState() {
controller = PodPlayerController(
playVideoFrom: PlayVideoFrom.youtube('https://youtu.be/A3ltMaM6noM'),
podPlayerConfig: const PodPlayerConfig(
videoQualityPriority: [720, 360],
autoPlay: false,
),
)..initialise();
controller.mute(); // in this line no working mute audio from videos in youtube and vimeo
super.initState();
}
void initState() { controller = PodPlayerController( playVideoFrom: PlayVideoFrom.youtube('https://youtu.be/A3ltMaM6noM'), podPlayerConfig: const PodPlayerConfig( videoQualityPriority: [720, 360], autoPlay: false, ), )..initialise(); controller.mute(); // in this line no working mute audio from videos in youtube and vimeo super.initState(); }