Added MPV setup
This commit is contained in:
parent
b9de556a5c
commit
490251af99
47 changed files with 5931 additions and 0 deletions
47
dot_config/private_mpv/script-opts/videoclip.conf
Normal file
47
dot_config/private_mpv/script-opts/videoclip.conf
Normal file
|
|
@ -0,0 +1,47 @@
|
|||
# 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue