Add mpeg4 Decode Migz GPU (#289)

* Add mpeg4 decode

* Increment version
This commit is contained in:
Fish2 2022-04-10 15:53:44 +01:00 committed by GitHub
parent ed80066224
commit 595fdf402a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -321,6 +321,8 @@ const plugin = (file, librarySettings, inputs, otherArguments) => {
response.preset = '-c:v mpeg1_cuvid';
} else if (file.video_codec_name === 'mpeg2') {
response.preset = '-c:v mpeg2_cuvid';
} else if (file.video_codec_name === 'mpeg4') {
response.preset = '-c:v mpeg4_cuvid';
} else if (file.video_codec_name === 'vc1') {
response.preset = '-c:v vc1_cuvid';
} else if (file.video_codec_name === 'vp8') {