radio-bullshit/yt_sync.py

32 lines
959 B
Python
Raw Normal View History

2021-06-15 21:27:04 +00:00
#!/usr/bin/env python3
import yt_dlp
2021-06-05 22:34:59 +00:00
if __name__ == "__main__":
songs_folder = "/songs"
jingles_folder = "/jingles"
2021-06-05 22:34:59 +00:00
# Radio Bullshit
## parameters for Radio Bullshit playlist
ydl_parameters = {
"format": "bestaudio/best",
"postprocessors": [{"key": "FFmpegExtractAudio", "preferredcodec": "vorbis"}],
2021-06-15 21:27:04 +00:00
"outtmpl": f"{songs_folder}/%(title)s.godwin",
"ignoreerrors": True,
"restrictfilenames": True,
}
## download
ydl = yt_dlp.YoutubeDL(ydl_parameters)
ydl.extract_info(
2021-06-05 22:34:59 +00:00
"https://www.youtube.com/playlist?list=PLQC73oq6JtgyYNOeifrJXXzZ1-F0Kgmbg",
)
# Radio Bullshit Jingles
## change output path for Radio Bullshit jingles
2021-06-15 22:37:25 +00:00
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"
)