You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
503 B
Python
22 lines
503 B
Python
name = 'celaigia'
|
|
ui_size = '500x300'
|
|
music_path = "./music"
|
|
audio_codec = 'mp3'
|
|
|
|
youtube_prefix = 'https://www.youtube.com/watch?v='
|
|
|
|
yt_dlp_opts = {
|
|
'format': 'bestaudio/best',
|
|
'default_search': 'ytsearch5',
|
|
'postprocessors': [{
|
|
'key': 'FFmpegExtractAudio',
|
|
'preferredcodec': audio_codec,
|
|
'preferredquality': '192',
|
|
}],
|
|
}
|
|
|
|
#https://www.askpython.com/python-modules/tkinter/tkinter-colors
|
|
colors = {
|
|
'DownloadButton': 'Turquoise',
|
|
'SearchButton':'DeepSkyBlue',
|
|
} |