flutter_vlc_player icon indicating copy to clipboard operation
flutter_vlc_player copied to clipboard

decode and play video using GPU

Open NaarGes opened this issue 3 years ago • 1 comments

Hi, In VlcPlayer there are an option for using GPU for decoding and playing videos. Is there same option in this package? How can I use it?

related link

NaarGes avatar Nov 24 '21 12:11 NaarGes

Have you tried using HwAcc.FULL option?

example:

controller = VlcPlayerController.network(
      'https://media.w3.org/2010/05/sintel/trailer.mp4',
      hwAcc: HwAcc.FULL,
      autoPlay: false,
      options: VlcPlayerOptions(),
    );

kartik1225 avatar Nov 27 '21 13:11 kartik1225