All checks were successful
KnarCraft/FFmpegConvert/pipeline/head This commit looks good
Adds a module to de-interlace when converting a video. It's enabled by a new configuration option. Fixes some bugs in the letterbox cropper Adds mpeg4 to video formats
20 lines
1.3 KiB
Properties
20 lines
1.3 KiB
Properties
# Enabling debug mode will only output part of videos, so different settings can be tested more quickly.
|
|
# Debug mode also prints more information about probe results, and potentially useful output.
|
|
debug=false
|
|
# Enabling hardware acceleration will try to use hardware acceleration for converters where it's available. Note that
|
|
# software encoders generally produce a lower file-size relative to the output quality.
|
|
hardware-acceleration-encode=false
|
|
# Hardware decoding can often speed up the conversion, but might be troublesome at times
|
|
hardware-acceleration-decode=true
|
|
# The available hardware encoders
|
|
encoders-hardware-accelerated=qsv,cuda,vaapi,dxva2,d3d11va,opencl,vulkan,d3d12va
|
|
# As FLAC can increase file size significantly, this option enabled automatic re-encode of flac tracks
|
|
encode-flac-always=false
|
|
# The preference for audio languages when converting anime (0 = undefined, * = any)
|
|
audio-languages-anime=jpn,eng,*
|
|
# The preference for subtitle languages when converting anime (0 = undefined, * = any)
|
|
subtitle-languages-anime=eng,*
|
|
# The preference for minimal subtitles, AKA Signs & Songs (REQUIRE/PREFER/NO_PREFERENCE/AVOID/REJECT)
|
|
minimal-subtitle-preference=AVOID
|
|
# The preference for whether video streams should be de-interlaced. It is recommended to only enable this when you notice that a video file is interlaced.
|
|
de-interlace-video=false |