在BASH中获得ffmpeg转换进度的可靠方法

时间:2010-05-24 11:40:30

标签: bash ffmpeg

我已经在这里和其他网站上做了一些搜索,似乎这个问题已被问过几次,但是不是给出实际的代码,人们只给出理论。

我希望创建一种可靠的方法来获得转码的进展。似乎最好的方法是使用源文件的总帧数,然后获取ffmpeg所在的当前帧。正如人们所指出的那样,因为ffmpeg使用Carriage Returns(/ r或^ M)奇怪地输出其进度,并且因为输出之间有时会有空间而有时不存在空间,这最多也是不可靠的。以下是输出示例:

frame=73834 fps=397 q=0.0 size=      -0kB time=2462.14 bitrate=  -0.0kbits/s frame=74028 fps=397 q=0.0 size=      -0kB time=2468.64 bitrate=  -0.0kbits/s frame=74133 fps=397 q=0.0 Lsize=      -0kB time=2472.06 bitrate=  -0.0kbits/

我已经编写了函数,当ffmpeg转换正在进行时调用。这是我到目前为止所得到的:

首先,获取源文件的总帧数:

duration=( $(ffmpeg -i "$SourceFile" 2>&1 | sed -n "s/.* Duration: \([^,]*\), start: .*/\1/p") )
fps=( $(ffmpeg -i "$SourceFile" 2>&1 | sed -n "s/.*, \(.*\) tbr.*/\1/p") )
hours=( $(echo $duration | cut -d":" -f1) )
minutes=( $(echo $duration | cut -d":" -f2) )
seconds=( $(echo $duration | cut -d":" -f3) )
# Get the integer part with cut
frames=( $(echo "($hours*3600+$minutes*60+$seconds)*$fps" | bc | cut -d"." -f1) )
if [ -z $frames ]; then
    zenity --info --title "$WindowTitle" --text "Can't calculate frames, sorry."
    exit 
echo ""$SourceFile" has $frames frames, now converting" > $ffmpeglog
echo ""$SourceFile" has $frames frames, now converting"

然后这是我在转换过程中调用的进度函数:

progress() {
sleep 10
#some shenanigans due to the way ffmpeg uses carriage returns
cat -v $ffmpeglog | tr '^M' '\n' > $ffmpeglog1
#calculate percentage progress based on frames
cframe=( $(tac $ffmpeglog1 | grep -m 1 frame= | awk '{print $1}' | cut -c 7-) )
if [ -z $cframe ]; then
    cframe=( $(tac $ffmpeglog1 | grep -m 1 frame= | awk '{print $2}') )
fi
if is_integer $frame; then
    percent=$((100 * cframe / frames))
    #calculate time left and taken etc
    fps=( $(tac $ffmpeglog1 | grep -m 1 frame= | awk '{print $3}') )
    if [ "$fps" = "fps=" ]; then
        fps=( $(tac $ffmpeglog1 | grep -m 1 frame= | awk '{print $4}') )
    fi
    total=$(( frames + cframe + percent + fps ))
    #simple check to ensure all values are numbers
    if is_integer $total; then
        #all ok continue
        if [ -z $fps ]; then
            echo -ne "\rffmpeg: $cframe of $frames frames, progress: $percent"%" and ETA: error fps:0"
        else
            if [ -z $cframe ]; then
                echo -ne "\rffmpeg: total $frames frames, error cframes:0"
            else
                remaining=$(( frames - cframe ))
                seconds=$(( remaining / fps ))
                h=$(( seconds / 3600 ))
                m=$(( ( seconds / 60 ) % 60 ))
                s=$(( seconds % 60 ))
                echo -ne "\rffmpeg: $cframe of $frames frames, progress: $percent"%" and ETA: "$h"h "$m"m "$s"s"
            fi
        fi
    else
        echo "Error, one of the values wasn't a number, trying again in 10s."
    fi
else
    echo "Error, frames is 0, progress wont work, sorry."

fi
}

在这里,为了完整性,是is_integer函数:

is_integer() {
    s=$(echo $1 | tr -d 0-9)
    if [ -z "$s" ]; then
        return 0
    else
        return 1
    fi

}

正如您所看到的,我的方法相当粗糙,因为我正在将一个日志文件写入另一个日志文件,然后处理该第二个日志文件,以尝试处理回车。我发现的主要问题是没有BASH可以调用的命令似乎能够将ffmpegs输出切换到最后一行,这是由于使用回车的坦率激怒。我的awk技能不是很好,当frame = xxxxxx部分之间没有空格时,进度函数失败,有时就是这种情况。我想知道是否有任何BASH headz可以使我的代码更具有错误的弹性和可靠性。

1 个答案:

答案 0 :(得分:3)

回车的原因,正如我确定你知道的那样,进度线相互覆盖(由于没有换行,输出保持在一行)。

您可以尝试使用此方法在最后一次回车后提取字符串:

$ sample=$'cherry\rbanana\rapple'
$ echo "$sample"
applea
$ cr=$'\r'                    # A
$ extract="${sample##*$cr}"   # B
$ echo "$extract"
apple

标有“A”和“B”的线条是必需品,其余的只是用于演示。使用这种方法,您可以消除一些现在必须使用的旋转。