blob: e1a485cc0e58a963459cfc4b4260938e64a42081 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/env bash
#
# download a song from youtube with highest quality possible, then import to
# beets
youtube-dl \
-x \
--audio-format mp3 \
--audio-quality 0 \
--exec 'beet import' \
$@
|