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:
|
my_example_preset:
|
||||||
file_convert:
|
file_convert:
|
||||||
convert_to: "mp4"
|
convert_to: "mp4"
|
||||||
|
|
||||||
|
Supports custom ffmpeg conversions:
|
||||||
|
|
||||||
|
.. code-block:: yaml
|
||||||
|
|
||||||
|
presets:
|
||||||
|
my_example_preset:
|
||||||
|
file_convert:
|
||||||
|
convert_to: "mkv"
|
||||||
convert_with: "ffmpeg"
|
convert_with: "ffmpeg"
|
||||||
ffmpeg_post_process_args: "asfd"
|
ffmpeg_post_process_args: >
|
||||||
|
-bitexact
|
||||||
|
-vcodec copy
|
||||||
|
-acodec copy
|
||||||
|
-scodec mov_text
|
||||||
"""
|
"""
|
||||||
|
|
||||||
_required_keys = {"convert_to"}
|
_required_keys = {"convert_to"}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue