47 lines
1.6 KiB
Text
47 lines
1.6 KiB
Text
# Absolute paths to the folders where generated clips will be placed.
|
||
# `~` is supported, but environment variables (e.g. `$HOME`) are not supported due to mpv limitations.
|
||
video_folder_path=~/Desktop
|
||
audio_folder_path=~/Desktop
|
||
|
||
|
||
# Clean filenames (remove special characters) (yes or no)
|
||
clean_filename=yes
|
||
|
||
# Video settings
|
||
video_width=-2
|
||
video_height=720
|
||
video_bitrate=1M
|
||
# Available video formats: mp4, vp9, vp8
|
||
video_format=mp4
|
||
# The range of the scale is 0–51, where 0 is lossless,
|
||
# 23 is the default, and 51 is worst quality possible.
|
||
# Insane values like 9999 still work but produce the worst quality.
|
||
video_quality=23
|
||
# Use the slowest preset that you have patience for.
|
||
# https://trac.ffmpeg.org/wiki/Encode/H.264
|
||
preset=fastest
|
||
# FPS / framerate. Set to "auto" or a number.
|
||
video_fps=auto
|
||
#video_fps=60
|
||
|
||
# Audio settings
|
||
# Available formats: opus or aac
|
||
audio_format=opus
|
||
# Opus sounds good at low bitrates 32-64k, but aac requires 128-256k.
|
||
audio_bitrate=32k
|
||
|
||
# Catbox.moe upload settings
|
||
# Whether uploads should go to litterbox instead of catbox.
|
||
# catbox files are stored permanently, while litterbox is temporary
|
||
litterbox=yes
|
||
# If using litterbox, time until video expires
|
||
# Available values: 1h, 12h, 24h, 72h
|
||
litterbox_expire=72h
|
||
|
||
# Filename format
|
||
# Available tags: %n = filename, %t = title, %s = start, %e = end, %d = duration,
|
||
# %Y = year, %M = months, %D = day, %H = hours (24), %I = hours (12),
|
||
# %P = am/pm %N = minutes, %S = seconds
|
||
# Title will fallback to filename if it's not present
|
||
#filename_template=%n_%s-%e(%d)
|
||
filename_template=%n_%s-%e
|