Open loomweaver opened 2 months ago
I am still experiencing #497 on latest (2024-08-22), not for individual videos, but when attempting to scrape a channel.
latest
2024-08-22
Trimmed docker-compose:
version: "3" services: metube: image: ghcr.io/alexta69/metube environment: - 'AUDIO_DOWNLOAD_DIR=/audio-downloads' - 'CUSTOM_DIRS=false' - 'CREATE_CUSTOM_DIRS=false' - 'YTDL_OPTIONS={"writesubtitles":true,"subtitleslangs":["en","-live_chat"], "subtitlesformat":"ass", "download_archive":"/downloads/download_archive.txt"}' - 'OUTPUT_TEMPLATE=%(webpage_url_domain)S/%(channel)S (%(channel_id)S)/(%(timestamp>%Y-%m-%d-%H-%M-%S)S) %(title)S (%(height)sp-%(id)S).%(ext)s'
For example, downloading https://www.youtube.com/channel/UCBa659QWEk1AI4Tg--mrJ2A/videos places the folder into /downloads/Tom Scott - Videos rather than adhering to OUTPUT_TEMPLATE formatting.
/downloads/Tom Scott - Videos
OUTPUT_TEMPLATE
I think the issue is that OUTPUT_TEMPLATE_PLAYLIST doesn't implicitly inherit the value of OUTPUT_TEMPLATE, since setting OUTPUT_TEMPLATE_PLAYLIST explicitly works correctly and as expected.
OUTPUT_TEMPLATE_PLAYLIST
@labmonkey can you take a look?
I am still experiencing #497 on
latest
(2024-08-22
), not for individual videos, but when attempting to scrape a channel.Trimmed docker-compose:
For example, downloading https://www.youtube.com/channel/UCBa659QWEk1AI4Tg--mrJ2A/videos places the folder into
/downloads/Tom Scott - Videos
rather than adhering toOUTPUT_TEMPLATE
formatting.I think the issue is that
OUTPUT_TEMPLATE_PLAYLIST
doesn't implicitly inherit the value ofOUTPUT_TEMPLATE
, since settingOUTPUT_TEMPLATE_PLAYLIST
explicitly works correctly and as expected.