2018-11-15 06:49:53 -08:00
|
|
|
#!/usr/bin/python3
|
2018-10-21 16:10:42 -07:00
|
|
|
"""Download audio using youtube-dl, passing
|
|
|
|
a specific set of options specified by the user.
|
2018-10-22 10:45:11 -07:00
|
|
|
|
2018-10-21 16:10:42 -07:00
|
|
|
=====
|
|
|
|
Usage
|
|
|
|
=====
|
2018-10-27 00:32:45 -07:00
|
|
|
>>> dlaudio -f flac -n <filename> "<url>"
|
2018-10-02 12:29:27 -07:00
|
|
|
"""
|
|
|
|
|
2018-11-12 19:32:39 -08:00
|
|
|
# TODO add support for downloading in flac, and then reencoding it
|
|
|
|
# in opus
|
|
|
|
|
2018-10-02 12:29:27 -07:00
|
|
|
import argparse
|
|
|
|
import pathlib
|
|
|
|
import subprocess
|
|
|
|
|
2018-10-22 10:45:11 -07:00
|
|
|
if __name__ == '__main__':
|
|
|
|
parser = argparse.ArgumentParser()
|
|
|
|
parser.add_argument('-b', '--batch-dl',
|
|
|
|
dest='batchfile',
|
|
|
|
type=str,
|
|
|
|
help='provide the links from a text file')
|
|
|
|
parser.add_argument('-f', '--format',
|
|
|
|
type=str,
|
2018-10-27 00:32:45 -07:00
|
|
|
default='flac',
|
2018-10-22 10:45:11 -07:00
|
|
|
help='the format to use')
|
|
|
|
parser.add_argument('-n', '--filename',
|
|
|
|
type=str,
|
|
|
|
help='the name of the downloaded file (without extension)')
|
|
|
|
parser.add_argument('urls',
|
|
|
|
nargs='*',
|
|
|
|
help='video URLs')
|
|
|
|
args = parser.parse_args()
|
|
|
|
|
|
|
|
default_filename = f"{pathlib.Path.home()}/Music/%(title)s.%(ext)s"
|
|
|
|
|
|
|
|
dl_opts = []
|
|
|
|
dl_opts.append('--no-part')
|
|
|
|
dl_opts.append('--no-continue')
|
|
|
|
dl_opts.append('--extract-audio')
|
|
|
|
dl_opts.append(f"--audio-format={args.format}")
|
|
|
|
|
|
|
|
dl_opts.append(f"--output={args.filename}")
|
|
|
|
|
|
|
|
# filename handling
|
|
|
|
# -b and -n should not be used together
|
|
|
|
if args.filename and args.batchfile:
|
|
|
|
print('Ignoring --batch-dl and --filename')
|
|
|
|
dl_opts.append(f"--output={default_filename}")
|
|
|
|
elif args.filename:
|
|
|
|
dl_opts.append(f"--output={pathlib.Path.home()}/Music/{args.filename}.%(ext)s")
|
|
|
|
else:
|
|
|
|
dl_opts.append(f"--output={default_filename}")
|
|
|
|
|
|
|
|
# URL handling
|
|
|
|
if args.batchfile:
|
|
|
|
dl_opts.append(f"--batch-file={args.batchfile}")
|
|
|
|
elif len(args.urls) == 0:
|
|
|
|
print("URLs are required")
|
|
|
|
exit(2)
|
|
|
|
else:
|
|
|
|
dl_opts.extend(args.urls)
|
|
|
|
|
|
|
|
dl = subprocess.run(['youtube-dl'] + dl_opts)
|