Add all files

This commit is contained in:
2025-09-29 13:52:46 +00:00
parent 137b5f2b51
commit 8edfb40df3
11 changed files with 1756 additions and 0 deletions

11
process_music.sh Executable file
View File

@@ -0,0 +1,11 @@
source .env/bin/activate
python3 make_folders.py
for f in ./*.mp3; do ffprobe "$f"; done
for f in ./*.flac; do ffprobe "$f"; done
mkdir ../temp
rm -r ../temp/*
mv ./*/ ../temp #move all directories
mv ./*.mp3 ../temp #move all mp3 files
mv ./*.flac ../temp #move all flac files
mv ./*.m4a ../temp #move all m4a files
rsync -arv ../temp/* ../Music