From e9f2791e07bc2a9c414e0e130db6a05d3d7a314d Mon Sep 17 00:00:00 2001 From: RandomNinjaAtk Date: Sun, 8 Nov 2020 15:43:43 -0500 Subject: [PATCH] v1.0.11 - remove statistics process --- root/scripts/video-pp.bash | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/root/scripts/video-pp.bash b/root/scripts/video-pp.bash index 4a49cf8..26bc93e 100644 --- a/root/scripts/video-pp.bash +++ b/root/scripts/video-pp.bash @@ -11,7 +11,7 @@ function Configuration { log "##### SABnzbd Category: $category" log "##### DOCKER: $TITLE" log "##### SCRIPT: Video Post Processor ($TITLESHORT)" - log "##### SCRIPT VERSION: 1.0.10" + log "##### SCRIPT VERSION: 1.0.11" log "##### DOCKER VERSION: $VERSION" log "##### CONFIGURATION VERIFICATION" @@ -168,15 +168,6 @@ function Main { continue fi fi - - if [ -f "${basefilename}.mkv" ]; then - statistics="true" - log "===START MKVPROPEDIT" - mkvpropedit "${basefilename}.mkv" --add-track-statistics-tags - log "===STOP MKVPROPEDIT" - else - statistics="false" - fi if [ ${VIDEO_MKVCLEANER} = TRUE ]; then log "Begin processing with MKV Cleaner..." @@ -353,14 +344,6 @@ function Main { fi fi - if [ "$statistics" == "false" ]; then - if [ -f "${basefilename}.mkv" ]; then - log "===START MKVPROPEDIT" - mkvpropedit "${basefilename}.mkv" --add-track-statistics-tags - log "===STOP MKVPROPEDIT" - fi - statistics="false" - fi log "Processing complete for: ${filename}!" done