Merge pull request #140 from catduckgnaf/main

updating combine
This commit is contained in:
RandomNinjaAtk 2023-12-21 01:24:01 +00:00 committed by GitHub
commit d1c8fe26aa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -36,8 +36,11 @@ combineM4bFiles() {
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
log "M4b files combined successfully. Output: $outputFile" log "M4b files combined successfully. Output: $outputFile"
rm -f "$readarr_artist_path/*.mp3"
log "MP3 files removed after successful M4b file combination."
else else
log "Error combining M4b files with FFmpeg." log "Error combining M4b files with FFmpeg."
log "original file untouched"
fi fi
} }