docs
This commit is contained in:
parent
7cb2df9d09
commit
dbde422d80
1 changed files with 14 additions and 1 deletions
|
|
@ -34,8 +34,21 @@ class FileConvertOptions(PluginOptions):
|
|||
my_example_preset:
|
||||
file_convert:
|
||||
convert_to: "mp4"
|
||||
|
||||
Supports custom ffmpeg conversions:
|
||||
|
||||
.. code-block:: yaml
|
||||
|
||||
presets:
|
||||
my_example_preset:
|
||||
file_convert:
|
||||
convert_to: "mkv"
|
||||
convert_with: "ffmpeg"
|
||||
ffmpeg_post_process_args: "asfd"
|
||||
ffmpeg_post_process_args: >
|
||||
-bitexact
|
||||
-vcodec copy
|
||||
-acodec copy
|
||||
-scodec mov_text
|
||||
"""
|
||||
|
||||
_required_keys = {"convert_to"}
|
||||
|
|
|
|||
Loading…
Reference in a new issue