使用 zenity 进度条终止脚本

使用 zenity 进度条终止脚本

(GNOME2,Ubuntu 10.04 LTS)我制作了一个 nautilus 脚本,这样如果我有一个充满各种编解码器的目录,那么我只需要右键单击该文件夹 -> Scripts -> THISSCRIPT.txt,然后就可以了递归地将所有视频文件(由视频 mimetype 标识)转换为 x.264 编解码器,其中 128 Kbit mp3 为 avi。这样它们就会具有小尺寸+高品质。这有效,太棒了!

问题:如果我按 Zenity 进度条上的“取消”,则 mencoder 不会终止。我该怎么做?我的意思是我需要如果我按 Zenity 进度条上的“取消”,它将终止 mencoder。这个怎么做?

#!/bin/bash

which mencoder > /dev/null 2>&1; if [[ $? -ne 0 ]]; then echo -e '\nerror, no mencoder package detected'; exit 1; fi
which zenity > /dev/null 2>&1; if [[ $? -ne 0 ]]; then echo -e '\nerror, no zenity package detected'; exit 1; fi

HOWMANYLEFT=0
find . -type f | xargs -I {} file --mime-type {} | fgrep "video/" | rev | awk 'BEGIN {FS="/oediv :"} { print $NF}' | rev | while read ONELINE
    do
    if file "$ONELINE" | egrep -qvi "x.264|h.264"
        then echo $ONELINE
    fi
done | sed 's/^.\///' | tee /tmp/vid-conv-tmp.txt | while read ONELINE
    do
    HOWMANY=`wc -l /tmp/vid-conv-tmp.txt | cut -d " " -f1`
    mencoder "$ONELINE" -o "OK-$ONELINE.avi" -ovc x264 -x264encopts bitrate=750 nr=2000 -oac mp3lame -lameopts cbr:br=128 > /dev/null 2>&1
    HOWMANYLEFT=`expr $HOWMANYLEFT + 1`
    echo "scale=10;($HOWMANYLEFT / $HOWMANY) * 100" | bc | cut -d "." -f1
done | zenity --progress --text="Processing files ..." --auto-close --percentage=0

答案1

你需要使用这个--auto-kill选项..我已经稍微修改了脚本(我喜欢你的跳出常规思维使用rev,但还有其他方法:) ...这是一种。

我用过yad而不是zenity.它是一个叉子禅宗,命令基本相同。从我读到的来看,亚德正在更积极地开发并具有更多功能(这对我来说是一个很好的机会来使用它)。该--auto-kill选项适用于两者禅宗亚德

除了显示百分比之外,该脚本还显示数了这么多(例如 3 of 8)加上当前文件的名称。百分比计算使用awk(只是因为我对其语法感到满意)..

关于你的具体问题,应该--auto-kill足够了。

for p in mencoder yad ;do
    which $p >/dev/null 2>&1 || { echo -e '\nerror, no $p package detected'; exit 1; }
done

list="$(mktemp)"
find . -type f -print0 |   # -print0 caters for any filename 
  xargs --null file --print0 --mime-type | 
    sed -n 's|\x00 *video/.*|\x00|p' | tr -d $'\n' |
      xargs --null file --print0 |
        sed -nr '/\x00.*(x.264|h.264)/!{s/^\.\///; s/\x00.*//; p}' >"$list"
        # At this point, to count how many files there are to process, break out of the pipe.
        # You can't know how many there are until they have all passed through the pipe.

fct=0; wcfct=($(wc "$list"));
while IFS= read -r file ;do
    ((fct+=1)); pcnt=$(awk -v"OFMT=%.2f" "BEGIN{ print (($fct-1)/$wcfct)*100 }")
    echo "# $pcnt%: $fct of $wcfct: $file"; echo $pcnt
    mencoder "$file" -o "OK-$file.avi" -ovc x264 -x264encopts bitrate=750 nr=2000 -oac mp3lame -lameopts cbr:br=128 >/dev/null 2>&1
done <"$list" | yad --title="Encoding Progress" --progress --geometry +100+100 --auto-close --auto-kill 
rm "$list"

相关内容