anidl / multi-downloader-nx

Downloader for Crunchyroll, Hidive, AnimeOnegai, and AnimationDigitalNetwork with CLI and GUI
MIT License
224 stars 38 forks source link

Using ffmpeg commands in gui #687

Closed StrPlayer closed 1 month ago

StrPlayer commented 1 month ago

how would i go about using ffmpeg commands to make files smaller after downloading an episode in the gui version

Jaynator495 commented 1 month ago

You could put something like this in your cli-defaults.yml:

ffmpegOptions: ["-c:v hevc_nvenc", "-rc vbr_hq", "-preset slow", "-vbr 22"]
forceMuxer: "ffmpeg"
StrPlayer commented 1 month ago

Thank you and whats the option called to make it a mp4 instead of a mkv

Jaynator495 commented 1 month ago

It's mp4: true

StrPlayer commented 1 month ago

thanks