mirror of
https://github.com/alexta69/metube.git
synced 2025-04-04 20:57:45 +03:00
allow custom video formats in backend
This commit is contained in:
parent
8e93c01c54
commit
62602b19c9
1 changed files with 2 additions and 0 deletions
|
@ -39,6 +39,8 @@ class Download:
|
||||||
elif quality in ('1080p', '720p', '480p'):
|
elif quality in ('1080p', '720p', '480p'):
|
||||||
res = quality[:-1]
|
res = quality[:-1]
|
||||||
self.format = f'bestvideo[height<={res}]+bestaudio/best[height<={res}]'
|
self.format = f'bestvideo[height<={res}]+bestaudio/best[height<={res}]'
|
||||||
|
elif quality.startswith('custom:'):
|
||||||
|
self.format = quality[7:]
|
||||||
else:
|
else:
|
||||||
raise Exception(f'unknown quality {quality}')
|
raise Exception(f'unknown quality {quality}')
|
||||||
self.info = info
|
self.info = info
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue