anidl / multi-downloader-nx

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

Using ffmpeg commands in gui #687

Closed StrPlayer closed 6 months ago

StrPlayer commented 6 months ago

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

Jaynator495 commented 6 months 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 6 months ago

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

Jaynator495 commented 6 months ago

It's mp4: true

StrPlayer commented 6 months ago

thanks