urls and quotes

This commit is contained in:
aweaver 2017-04-16 07:17:27 -07:00
parent 321d998b5a
commit ec26d2038a
2 changed files with 10 additions and 10 deletions

View File

@ -32,7 +32,7 @@ Dependency:
ffmpeg ffmpeg
About: About:
Version: ${VERSION} Version: ${VERSION}
Website: https://github.com/amiaopensource/ffmprovisr/blob/gh-pages/check_framemd5.sh Website: https://github.com/amiaopensource/ffmprovisr/blob/gh-pages/check_audio_framemd5.sh
EOF EOF
exit 0 exit 0
} }

View File

@ -32,7 +32,7 @@ Dependency:
ffmpeg ffmpeg
About: About:
Version: ${VERSION} Version: ${VERSION}
Website: https://github.com/amiaopensource/ffmprovisr/blob/gh-pages/check_framemd5.sh Website: https://github.com/amiaopensource/ffmprovisr/blob/gh-pages/check_video_framemd5.sh
EOF EOF
exit 0 exit 0
} }
@ -54,21 +54,21 @@ done
echo -e "${BLUE}Please wait...${NC}" echo -e "${BLUE}Please wait...${NC}"
unset md5_tmp unset md5_tmp
if [[ $OSTYPE = "cygwin" ]]; then if [[ $OSTYPE = "cygwin" ]]; then
md5_tmp=""${USERPROFILE}/$(basename ${input_hash}).tmp"" md5_tmp="${USERPROFILE}/$(basename "${input_hash}").tmp"
else else
md5_tmp="${HOME}/$(basename ${input_hash}).tmp" md5_tmp="${HOME}/$(basename "${input_hash}").tmp"
fi fi
$(ffmpeg -i ${input_file} -loglevel 0 -f framemd5 -an ${md5_tmp}) ffmpeg -i "${input_file}" -loglevel 0 -f framemd5 -an "${md5_tmp}"
[[ ! -f ${md5_tmp} ]] && { echo -e "${RED}Error: '${input_file}' is not a valid audio-visual file.${NC}" ; _output_prompt ; } [[ ! -f "${md5_tmp}" ]] && { echo -e "${RED}Error: '${input_file}' is not a valid audio-visual file.${NC}" ; _output_prompt ; }
unset old_file unset old_file
unset tmp_file unset tmp_file
old_file=$(grep -v '^#' ${input_hash}) old_file=$(grep -v '^#' "${input_hash}")
tmp_file=$(grep -v '^#' ${md5_tmp}) tmp_file=$(grep -v '^#' "${md5_tmp}")
if [[ "${old_file}" = "${tmp_file}" ]]; then if [[ "${old_file}" = "${tmp_file}" ]]; then
echo -e "${BLUE}'$(basename ${input_file})' matches '$(basename ${input_hash})'${NC}" echo -e "${BLUE}'$(basename "${input_file}")' matches '$(basename "${input_hash}")'${NC}"
rm "${md5_tmp}" rm "${md5_tmp}"
else else
echo -e "${RED}The following differences were detected between '$(basename ${input_file})' and '$(basename ${input_hash})':${NC}" echo -e "${RED}The following differences were detected between '$(basename "${input_file}")' and '$(basename "${input_hash}")':${NC}"
diff "${input_hash}" "${md5_tmp}" diff "${input_hash}" "${md5_tmp}"
rm "${md5_tmp}" rm "${md5_tmp}"
fi fi