Replies: 1 comment 2 replies
-
This is good stuff @qwerty12 , might be worth creating a dedicated plugin for this! I've always seen this in yt-dlp but never looked too deep at it. What is the benefit of using aria2c over ffmpeg? |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Not a full config to share - I'm just using the built-in presets by way of examples\tv_show_config.yaml. Just had to set
ffmpeg_path
andffprobe_path
on top (Windows). Oh, I disabled .info.json generation withinfo_json_name: ''
- I'm using Jellyfin to watch the downloads, so I don't really have a use for those. I wanted to usearia2c
for my YT downloads, so after reading the yt-dlp argument-parsing code, here's something to put into a preset:aria2c[.exe]
will need to be in your$PATH
.no-external-downloader-progress
is present to work around a possible bug but I'm not sure if it's even needed - after about 500 or so downloads with aria2c, I didn't hit yt-dlp issue #5931 once. Still, aside from possibly clogging up the YAML file, it won't do any harm.show-console-readout=false
is passed to aria2c to match ytdl-sub's default of not showing download progress.aria2c
will still print error messages, however. If you desire all aria2c output to be silenced, just uncomment thequiet
line.(As an aside, the equivalent of
--force-ipv4
issource_address: '0.0.0.0'
)Many thanks for this program, jmbannon, as I took a look at the alternatives and they simply weren't suitable for my needs for various reasons. ytdl-sub does exactly what I need without any bloat.
Beta Was this translation helpful? Give feedback.
All reactions