radio-bullshit/yt_sync.py
Aethor 2c5b7765a0
Some checks failed
continuous-integration/drone/push Build is failing
(hopefully) update from youtube_dl to yt_dlp
2024-02-24 15:49:56 +01:00

32 lines
959 B
Python

#!/usr/bin/env python3
import yt_dlp
if __name__ == "__main__":
songs_folder = "/songs"
jingles_folder = "/jingles"
# Radio Bullshit
## parameters for Radio Bullshit playlist
ydl_parameters = {
"format": "bestaudio/best",
"postprocessors": [{"key": "FFmpegExtractAudio", "preferredcodec": "vorbis"}],
"outtmpl": f"{songs_folder}/%(title)s.godwin",
"ignoreerrors": True,
"restrictfilenames": True,
}
## download
ydl = yt_dlp.YoutubeDL(ydl_parameters)
ydl.extract_info(
"https://www.youtube.com/playlist?list=PLQC73oq6JtgyYNOeifrJXXzZ1-F0Kgmbg",
)
# Radio Bullshit Jingles
## change output path for Radio Bullshit jingles
ydl_parameters["outtmpl"] = f"{jingles_folder}/%(title)s.godwin"
## download
ydl = yt_dlp.YoutubeDL(ydl_parameters)
ydl.extract_info(
"https://www.youtube.com/playlist?list=PLQC73oq6JtgzX8zbHtP5qXKiH6cuanFWi"
)