flutter_vlc_player
flutter_vlc_player copied to clipboard
decode and play video using GPU
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?
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(),
);