diff options
author | Jesús <heckyel@hyperbola.info> | 2020-06-02 19:42:57 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2020-06-02 19:42:57 -0500 |
commit | 92152b9ee059d322629ccbba269bc6af998eabfd (patch) | |
tree | 56e996b853877a41cef33267046b0816abb42416 /test/test_converter.py | |
parent | 809cab455c2d2c19dd78df87f023419674a23cd4 (diff) | |
download | librevideoconverter-92152b9ee059d322629ccbba269bc6af998eabfd.tar.lz librevideoconverter-92152b9ee059d322629ccbba269bc6af998eabfd.tar.xz librevideoconverter-92152b9ee059d322629ccbba269bc6af998eabfd.zip |
Add WebM VP8
Diffstat (limited to 'test/test_converter.py')
-rw-r--r-- | test/test_converter.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/test_converter.py b/test/test_converter.py index 1ecf786..6033d32 100644 --- a/test/test_converter.py +++ b/test/test_converter.py @@ -1068,6 +1068,24 @@ class TestConverterDefinitions(base.Test): }) self.check_uses_input_size('webmvp9') + def test_webmvp8(self): + self.check_ffmpeg_arguments('webmvp8', { + 'acodec': 'libvorbis', + 'vcodec': 'libvpx', + 'b:v': '0', + 'g': '240', + 'crf': '32', + 'f': 'webm', + 'i': self.input_path, + 'output_file': self.output_path, + 'quality': 'good', + 's': '542x320', + 'strict': 'experimental', + 'threads': '8', + 'map_metadata': '-1', + }) + self.check_uses_input_size('webmvp8') + def test_webmuhd(self): self.check_ffmpeg_arguments('webmuhd', { 'ab': '128k', |