blob: d7705ab2949a768dce1e1ef89d4d0dbf264fa835 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
jobs = 2
help: ## Show this help.
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'
download: ## download all links to ./music
download: ## you can specify number of jobs with ex. jobs=4
cat links | parallel -j${jobs} -k "target=./music bin/yout2ogg"
downloadmp3: ## download all links to ./mp3 (as mp3)
downloadmp3: ## you can specify number of jobs with ex. jobs=4
cat links | parallel -j${jobs} -k "target=./mp3 bin/yout2mp3"
add: ##make add url="http://youtube..."
add: ##to add link to ./links
bin/youtplaylist ${url} >> links
check: ## check for missing songs
check: ## make download should be run first
cat links | musicDir=./music xargs -n1 bin/checkMissing
reversecheck: ## check for orphan files in directory
ls music/* | xargs -n1 bin/checkMissingLink
addorphans: ## add orphan files to links
ls music/* | xargs -n1 bin/checkMissingLink | sed 's,.*\(.\{11\}\)\.ogg,http://www.youtube.com/watch?v=\1,' | xargs -n1 youtplaylist >> links
deleteorphans:
ls music/* | xargs -n1 bin/checkMissingLink | xargs rm
checkmp3: ## check for missing songs
checkmp3: ## make download should be run first
cat links | musicDir=./mp3 xargs -n1 bin/checkMissingmp3
play: ## play the playlist without downloading
mpv --loop=inf --shuffle --playlist links
copy: ## make copy dest="/mnt/tmp/music"
copy: ## to copy music to dest
rsync -vrltD --delete --ignore-existing --exclude=.graveyard ./music/ ${dest}
drycopy: ## make drycopy dest="/mnt/tmp/music"
drycopy: ## to dryrun copy music to dest (for finding deleted files etc.)
rsync -vnrltD --delete --ignore-existing --exclude=.graveyard ./music/ ${dest}
convert2mp3: ## converts stuff from ./music to ./mp3
ls music/* | target=./mp3 xargs -n1 bin/ogg2mp3
|