Merge pull request #510 from andrew-kennedy/patch-1

Add av1 option to checkVideoCodec flow plugin
make-only-subtitle-default
HaveAGitGat 2 years ago committed by GitHub
commit 057f8e8095
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -23,9 +23,18 @@ var details = function () { return ({
type: 'dropdown', type: 'dropdown',
options: [ options: [
'hevc', 'hevc',
'av1',
'vp9', 'vp9',
'h264', 'h264',
'vp8', 'vp8',
'wmv2',
'wmv3',
'mpeg4',
'mpeg2video',
'mjpeg',
'flv',
'mpeg4',
'theora'
], ],
}, },
tooltip: 'Specify the codec check for', tooltip: 'Specify the codec check for',

@ -26,9 +26,17 @@ const details = ():IpluginDetails => ({
type: 'dropdown', type: 'dropdown',
options: [ options: [
'hevc', 'hevc',
'av1',
'vp9', 'vp9',
'h264', 'h264',
'vp8', 'vp8',
'wmv2',
'wmv3',
'mpeg4',
'mpeg2video',
'mjpeg',
'flv',
'theora',
], ],
}, },
tooltip: 'Specify the codec check for', tooltip: 'Specify the codec check for',

Loading…
Cancel
Save