Added documentation about music acquisition

merge-requests/154/head
Eliot Berriot 2017-06-25 23:34:12 +02:00
rodzic 34ec7b542f
commit 4f5f383968
2 zmienionych plików z 30 dodań i 0 usunięć

Wyświetl plik

@ -0,0 +1,22 @@
#! /bin/bash
set -e
[ -z $1 ] && echo "Path to list file missing" && exit 1
echo "This will download tracks from zip archives listed in $1"
LIST_CONTENT=$(cat $1)
echo "$LIST_CONTENT"
mkdir -p data/music
cd data/music
echo "Downloading files..."
echo "$LIST_CONTENT" | grep "^[^#;]" | xargs -n 1 curl -LO
echo "Unzipping archives..."
find . -name "*.zip" | while read filename; do
dirname="${filename%.*}"
mkdir $dirname
unzip -o -d "$dirname" "$filename";
done;
echo "Done!"

8
demo/music.txt 100644
Wyświetl plik

@ -0,0 +1,8 @@
# You can get a pretty list of open music here: https://archive.org/details/jamendo-albums
https://archive.org/compress/jamendo-069098/formats=OGG%20VORBIS&file=/jamendo-069098.zip
https://archive.org/compress/jamendo-001144/formats=OGG%20VORBIS&file=/jamendo-001144.zip
https://archive.org/compress/jamendo-027690/formats=OGG%20VORBIS&file=/jamendo-027690.zip
https://archive.org/compress/jamendo-001469/formats=OGG%20VORBIS&file=/jamendo-001469.zip
https://archive.org/compress/jamendo-106323/formats=OGG%20VORBIS&file=/jamendo-106323.zip
https://archive.org/compress/jamendo-071149/formats=OGG%20VORBIS&file=/jamendo-071149.zip
https://archive.org/compress/jamendo-085030/formats=OGG%20VORBIS&file=/jamendo-085030.zip