v1.1.0 화질 선택 기능 추가

화질 선택 기능 추가
잘못된 예외처리 수정
This commit is contained in:
joyfuI
2020-02-11 20:43:20 +09:00
parent 39a2867d31
commit a190335de2
6 changed files with 57 additions and 11 deletions

View File

@@ -89,6 +89,21 @@ class Logic(object):
youtube_dl_list = []
@staticmethod
def get_preset_list():
preset_list = [
['bestvideo+bestaudio/best', '최고 화질'],
['bestvideo[height<=1080]+bestaudio/best[height<=1080]', '1080p'],
['worstvideo+worstaudio/worst', '최저 화질'],
['bestvideo[ext=mp4]+bestaudio[ext=m4a]/best[ext=mp4]', '최고 화질(mp4)'],
['bestvideo[ext=mp4][height<=1080]+bestaudio[ext=m4a]/best[ext=mp4][height<=1080]', '1080p(mp4)'],
['webm', 'webm'],
['bestvideo[filesize<50M]+bestaudio/best[filesize<50M]', '50MB 미만'],
['bestaudio', '오디오만'],
['_custom', '사용자 정의']
]
return preset_list
@staticmethod
def get_data(youtube_dl):
try: