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

Add av1 option to checkVideoCodec flow plugin
This commit is contained in:
HaveAGitGat 2023-11-10 04:47:26 +00:00 committed by GitHub
commit 057f8e8095
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 17 additions and 0 deletions

View file

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

View file

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