marcopeocchi / yt-dlp-web-ui

A terrible web ui for yt-dlp. Designed to be self-hosted.
Mozilla Public License 2.0
660 stars 68 forks source link

Output Arg #65

Closed eximo84 closed 11 months ago

eximo84 commented 11 months ago

So I'm trying to integrate this with Jellyfin using this add on:

https://github.com/ankenyr/jellyfin-youtube-metadata-plugin

The add on requires a specific file name

3Blue1Brown - 20211023 - A_few_of_the_best_math_explainers_from_this_summer [F3Qixy-r_rQ].mkv

I'm trying to use the following arg

--output "%(uploader)s/%(uploader)s - %(upload_date)s - %(title)s/%(uploader)s - %(upload_date)s - %(title)s [%(id)s].%(ext)s"

However nothing is downloaded when I use this --output arg.

marcopeocchi commented 11 months ago

@eximo84 try enabling the "file name overriding" option, then paste your template.

image

eximo84 commented 11 months ago

Ah ok. Done that and without using the -o switch and "" the template is accepted and works as expected.

Thanks

Can close.