mirror of
https://github.com/KrumpetPirate/AAXtoMP3.git
synced 2024-11-18 03:08:57 +01:00
AAXtoMP3: fix possition of dash when replacing colon
This commit is contained in:
parent
8887bee900
commit
9da73dc7e0
2
AAXtoMP3
2
AAXtoMP3
@ -107,7 +107,7 @@ do
|
||||
save_metadata "${path}"
|
||||
genre=$(get_metadata_value genre)
|
||||
artist=$(get_metadata_value artist)
|
||||
title=$(get_metadata_value title | sed 's/'\:'/'-\ '/g' | xargs -0)
|
||||
title=$(get_metadata_value title | sed 's/'\:'/'\ -'/g' | xargs -0)
|
||||
output_directory="$(dirname "${path}")/${genre}/${artist}/${title}"
|
||||
mkdir -p "${output_directory}"
|
||||
full_file_path="${output_directory}/${title}.${extension}"
|
||||
|
Loading…
Reference in New Issue
Block a user