diff options
-rw-r--r-- | app/ytdl.py | 2 | ||||
-rw-r--r-- | ui/src/app/app.component.ts | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/app/ytdl.py b/app/ytdl.py index 76c0f73..3f684d8 100644 --- a/app/ytdl.py +++ b/app/ytdl.py @@ -36,7 +36,7 @@ class Download: self.download_dir = download_dir
if quality == 'best':
self.format = None
- elif quality in ('1080p', '720p', '480p'):
+ elif quality in ('1440p', '1080p', '720p', '480p'):
res = quality[:-1]
self.format = f'bestvideo[height<={res}]+bestaudio/best[height<={res}]'
elif quality.startswith('custom:'):
diff --git a/ui/src/app/app.component.ts b/ui/src/app/app.component.ts index 7bb8181..7a18d28 100644 --- a/ui/src/app/app.component.ts +++ b/ui/src/app/app.component.ts @@ -13,6 +13,7 @@ export class AppComponent implements AfterViewInit { addUrl: string; qualities: Array<Object> = [ {id: "best", text: "Best"}, + {id: "1440p", text: "1440p"}, {id: "1080p", text: "1080p"}, {id: "720p", text: "720p"}, {id: "480p", text: "480p"} |