aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dlc/utils.py
diff options
context:
space:
mode:
authorpukkandan <pukkandan@gmail.com>2021-01-04 22:10:47 +0530
committerpukkandan <pukkandan@gmail.com>2021-01-05 02:36:09 +0530
commit91ebc64068d2957400dbfaadff23e995392b3963 (patch)
treeebaf13430c45fdef23815fed611d393ae1679c8c /youtube_dlc/utils.py
parent50865ca803a130308c064c2de5c7140754382993 (diff)
downloadhypervideo-pre-91ebc64068d2957400dbfaadff23e995392b3963.tar.lz
hypervideo-pre-91ebc64068d2957400dbfaadff23e995392b3963.tar.xz
hypervideo-pre-91ebc64068d2957400dbfaadff23e995392b3963.zip
Change defaults
* Enabled --ignore by default * Disabled --video-multistreams and --audio-multistreams by default * Changed default format selection to 'bv*+ba/b' when --audio-multistreams is disabled * Changed default format sort order to 'res,fps,codec,size,br,asr,proto,ext,has_audio,source,format_id' * Changed default output template to '%(title)s [%(id)s].%(ext)s' * Enabled `--list-formats-as-table` by default
Diffstat (limited to 'youtube_dlc/utils.py')
-rw-r--r--youtube_dlc/utils.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dlc/utils.py b/youtube_dlc/utils.py
index bc41f5498..7a2ba9ebd 100644
--- a/youtube_dlc/utils.py
+++ b/youtube_dlc/utils.py
@@ -4128,7 +4128,7 @@ def qualities(quality_ids):
return q
-DEFAULT_OUTTMPL = '%(title)s-%(id)s.%(ext)s'
+DEFAULT_OUTTMPL = '%(title)s [%(id)s].%(ext)s'
def limit_length(s, length):