From 9eaa146b422c34a0cc06f403259bde2210f6f6b9 Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Mon, 22 Oct 2018 10:25:52 -0700 Subject: [PATCH] Changed default audio format to opus --- dlaudio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlaudio.py b/dlaudio.py index a11ffbc..1ae26b2 100755 --- a/dlaudio.py +++ b/dlaudio.py @@ -18,8 +18,8 @@ parser.add_argument('-b', '--batch-dl', help='provide the links from a text file') parser.add_argument('-f', '--format', type=str, - default='ogg', - help='the format to use (default:ogg)') + default='opus', + help='the format to use') parser.add_argument('-n', '--filename', type=str, help='the name of the downloaded file (without extension)')