Browse Source

findVideos.sh now renames files with double spaces and alters the corresponding .nfo file when necessary

master
Ryan Beck 3 months ago
parent
commit
aeffd00a00
1 changed files with 18 additions and 1 deletions
  1. +18
    -1
      findVideos.sh

+ 18
- 1
findVideos.sh View File

@ -10,8 +10,25 @@ while read -r line;
do
codec="$( $ffBin/ffprobe -loglevel error -select_streams v:0 -show_entries \
stream=codec_name -of default=noprint_wrappers=1:nokey=1 "$line" )"
if ! [[ $codec == *"av1"* ]]
if [ $? -eq 0 ]
then
if [[ $codec == *"264"* ]]
then
#Sometimes scp has issues with double spaces?
if [[ "$line" == *" "* ]]
then
repLine="$( echo "$line" | sed "s/ //g" )"
mv "$line" "$repLine"
if [ -f "$( dirname "$line" )/$( basename "$line" .mkv ).nfo" ]
then
mv "$( dirname "$line" )/$( basename "$line" .mkv ).nfo" "$( dirname "$repLine" )/$( basename "$repLine" .mkv ).nfo"
fi
line=$repLine
unset repLine
fi
echo "$line" >>"$destDir/list.txt"
fi
else
echo "NON-ZERO for $line"
fi
done<<<"$( find "$parentDir" -name "*.mkv" -print )"

Loading…
Cancel
Save