v1.0.17 - more bugfixes from recent ubuntu -> alpine change

master
RandomNinjaAtk 3 years ago committed by GitHub
parent 1012bf2602
commit dafa645a3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -11,7 +11,7 @@ function Configuration {
log "##### SABnzbd Category: $category" log "##### SABnzbd Category: $category"
log "##### DOCKER: $TITLE" log "##### DOCKER: $TITLE"
log "##### SCRIPT: Video Post Processor ($TITLESHORT)" log "##### SCRIPT: Video Post Processor ($TITLESHORT)"
log "##### SCRIPT VERSION: 1.0.16" log "##### SCRIPT VERSION: 1.0.17"
log "##### DOCKER VERSION: $VERSION" log "##### DOCKER VERSION: $VERSION"
log "##### CONFIGURATION VERIFICATION" log "##### CONFIGURATION VERIFICATION"
@ -69,10 +69,10 @@ function Main {
fi fi
filecount=$(find "$1" -type f -iregex ".*/.*\.\(wmv\|mkv\|mp4\|avi\)" | wc -l) filecount=$(find "$1" -type f -regex ".*/.*\.\(wmv\|mkv\|mp4\|avi\)" | wc -l)
log "Processing ${filecount} video files..." log "Processing ${filecount} video files..."
count=0 count=0
find "$1" -type f -iregex ".*/.*\.\(wmv\|mkv\|mp4\|avi\)" -print0 | while IFS= read -r -d '' video; do find "$1" -type f -regex ".*/.*\.\(wmv\|mkv\|mp4\|avi\)" -print0 | while IFS= read -r -d '' video; do
count=$(($count+1)) count=$(($count+1))
log "" log ""
log "====================================================" log "===================================================="
@ -368,7 +368,7 @@ function Main {
if [ ${VIDEO_SMA} = TRUE ] || [ ${VIDEO_MKVCLEANER} = TRUE ]; then if [ ${VIDEO_SMA} = TRUE ] || [ ${VIDEO_MKVCLEANER} = TRUE ]; then
find "$1" -type f ! -newer "$1/sma-conversion-check" ! -name "sma-conversion-check" -delete find "$1" -type f ! -newer "$1/sma-conversion-check" ! -name "sma-conversion-check" -delete
# check for video files # check for video files
if find "$1" -type f -iregex ".*/.*\.\(mkv\|mp4\)" | read; then if find "$1" -type f -regex ".*/.*\.\(mkv\|mp4\)" | read; then
log "Post Processing Complete!" log "Post Processing Complete!"
else else
log "ERROR: Post Processing failed, no video files found..." log "ERROR: Post Processing failed, no video files found..."
@ -378,7 +378,7 @@ function Main {
rm "$1/sma-conversion-check" rm "$1/sma-conversion-check"
fi fi
else else
if find "$1" -type f -iregex ".*/.*\.\(mkv\|mp4\|avi\)" | read; then if find "$1" -type f -regex ".*/.*\.\(mkv\|mp4\|avi\)" | read; then
log "Post Processing Complete!" log "Post Processing Complete!"
else else
log "ERROR: Post Processing failed, no video files found..." log "ERROR: Post Processing failed, no video files found..."

Loading…
Cancel
Save