Compare commits
9 Commits
db02c43066
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| d85eda79bc | |||
| d8a4ca6aa1 | |||
| c3ab16ff9c | |||
| 8433ca6455 | |||
| e9e1f3169e | |||
|
|
da98aaa7ad | ||
|
|
e22b5c6de2 | ||
|
|
bf2fcfbe5c | ||
|
|
2f6f873082 |
@@ -1,10 +1,15 @@
|
||||
#!/bin/bash
|
||||
echo "Downloading youtube song $1"
|
||||
source .env/bin/activate
|
||||
if [ "$2" = "-" ] && [ "$3" = "-" ]; then
|
||||
echo "Downloading only with url, ignoring artist and title"
|
||||
python3 download_youtube.py "$1"
|
||||
else
|
||||
echo "Downloading only with url, ignoring artist and title"
|
||||
echo "using artist $2 and title $3"
|
||||
python3 download_youtube.py "$@"
|
||||
fi
|
||||
|
||||
echo "using artist $2 and title $3"
|
||||
python3 download_youtube.py $1 $2 $3
|
||||
|
||||
# ./process_music.sh
|
||||
./process_music.sh
|
||||
|
||||
echo "Done!"
|
||||
|
||||
25
fix_unknown_album_and_artist_flac_file.sh
Executable file
25
fix_unknown_album_and_artist_flac_file.sh
Executable file
@@ -0,0 +1,25 @@
|
||||
#!/bin/bash
|
||||
|
||||
# script to fix where flac tags are set correctly but navidrome still sees them as having [Unknown album] and [Unknown artist]
|
||||
# usage: fix_unknown_album_and_artist_flac_file.sh FILENAME [LOCATION]
|
||||
# parameters:
|
||||
# FILENAME: file to fix
|
||||
# LOCATION: optional, location of the file, if the script is run from a different directory than where the file to fix is.
|
||||
|
||||
if [ -z "$2" ]
|
||||
then
|
||||
echo "staying in current directory"
|
||||
else
|
||||
echo "moving to $2"
|
||||
cd "$2"
|
||||
fi
|
||||
|
||||
echo "Fixing flac file $1"
|
||||
|
||||
echo "running command ffmpeg -i $1 -c:a flac -map_metadata 0 fixed.flac"
|
||||
|
||||
ffmpeg -i "$1" -c:a flac -map_metadata 0 "fixed.flac"
|
||||
|
||||
echo "moving fixed.flac to $1"
|
||||
mv "fixed.flac" "$1"
|
||||
|
||||
Reference in New Issue
Block a user