我有一个批量转换脚本,可以将各种尺寸的.mkvs变成ipod / iphone大小.mp4s,裁剪/缩放以适应。确定原始尺寸,所需的裁剪,输出文件都工作正常。但是,成功完成第一次转换后,HandbrakeCLI会导致父脚本退出。为什么会这样?我怎么能阻止它?
目前的代码:
#!/bin/bash
find . -name "*.mkv" | while read FILE
do
# What would the output file be?
DST=../Touch/$(dirname "$FILE")
MKV=$(basename "$FILE")
MP4=${MKV%%.mkv}.mp4
# If it already exists, don't overwrite it
if [ -e "$DST/$MP4" ]
then
echo "NOT overwriting $DST/$MP4"
else
# Stuff to determine dimensions/cropping removed for brevity
HandbrakeCLI --preset "iPhone & iPod Touch" --vb 900 --crop $crop -i "$FILE" -o "$DST/$MP4" > /dev/null 2>&1
if [ $? != 0 ]
then
echo "$FILE had problems" >> errors.log
fi
fi
done
我还用陷阱尝试了它,但这没有改变行为(尽管最后一个陷阱确实发生了)
trap "echo Handbrake SIGINT-d" SIGINT
trap "echo Handbrake SIGTERM-d" SIGTERM
trap "echo Handbrake EXIT-d" EXIT
trap "echo Handbrake 0-d" 0
编辑添加:
“0”陷阱被解雇的事实促使我调查为什么会这样。执行bash -x $script
显示find | while read
循环过早结束。
我重新考虑了查找并编码成单独的脚本。现在找到循环:
find . -name "*.mkv" | while read FILE
do
handbrake-touch "$FILE"
if [ $? != 0 ]
then
echo "$FILE had problems" >> errors.log
fi
done
行为保持不变 - 一个编码后跟while循环结束。如果我只是用'echo $ FILE'代替'handbrake-touch',那么列出所有文件。当前目录不会更改(我想知道什么可能会破坏find | while
)。
答案 0 :(得分:6)
现在解决了,感谢来自this其他主题的线索。我现在没有回应HandbrakeCLI,以确保它不使用与我的脚本相同的标准输入:
find . -name "*.mkv" | while read FILE
do
echo "" | handbrake-touch "$FILE"
if [ $? != 0 ]
then
echo "$FILE had problems" >> errors.log
fi
done
......它按预期/预期工作。