From 55f3f8231310391c08a2651e4acda6b4955847bd Mon Sep 17 00:00:00 2001 From: Eric Torres Date: Sat, 27 Oct 2018 00:32:45 -0700 Subject: [PATCH] Changed default format to flac because of poor audio quality on opus downloads --- dlaudio.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dlaudio.py b/dlaudio.py index 9c638c7..635f565 100755 --- a/dlaudio.py +++ b/dlaudio.py @@ -5,7 +5,7 @@ ===== Usage ===== ->>> dlaudio -f flac -n something "www.youtube.com" +>>> dlaudio -f flac -n "" """ import argparse @@ -20,7 +20,7 @@ if __name__ == '__main__': help='provide the links from a text file') parser.add_argument('-f', '--format', type=str, - default='opus', + default='flac', help='the format to use') parser.add_argument('-n', '--filename', type=str,