aboutsummaryrefslogtreecommitdiffstats
path: root/hypervideo_gui.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-12-09 17:55:53 -0500
committerJesús <heckyel@hyperbola.info>2019-12-09 17:55:53 -0500
commit3c771922cb76cb36b9293d35d70a84e332824a56 (patch)
tree42a029b310be4dfa2069bcc63d990b5131a5d8ab /hypervideo_gui.py
parent878dfc95367caea213541ef447b8e89877430d04 (diff)
downloadhypervideo-gui-3c771922cb76cb36b9293d35d70a84e332824a56.tar.lz
hypervideo-gui-3c771922cb76cb36b9293d35d70a84e332824a56.tar.xz
hypervideo-gui-3c771922cb76cb36b9293d35d70a84e332824a56.zip
fix bestvideo+bestaudio
Diffstat (limited to 'hypervideo_gui.py')
-rw-r--r--hypervideo_gui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/hypervideo_gui.py b/hypervideo_gui.py
index 7cf176a..dfbb1ae 100644
--- a/hypervideo_gui.py
+++ b/hypervideo_gui.py
@@ -217,7 +217,7 @@ class App(QMainWindow):
if self.videoFormatCombobox.currentText() == self.default_video_formats_menu_items[0]:
# download best video quality
ydl_opts = {
- 'format': 'best',
+ 'format': 'bestvideo+bestaudio/best',
'outtmpl': outtmpl,
}
elif self.videoFormatCombobox.currentText() == self.default_video_formats_menu_items[1]: