videoDecoders property

List<String> videoDecoders

Decoder list set by user

Implementation

List<String> get videoDecoders => _vdec;
void videoDecoders=(List<String> value)

Set video decoder priority. Default is 'auto' decoder, which is usually 'FFmpeg'. Detail: https://github.com/wang-bin/mdk-sdk/wiki/Player-APIs#void-setdecodersmediatype-type-const-stdvectorstdstring-names

Implementation

set videoDecoders(List<String> value) => setDecoders(MediaType.video, value);