移动和重命名视频文件 (*.mp4) 时长不超过 3 分钟

移动和重命名视频文件 (*.mp4) 时长不超过 3 分钟

我正在尝试创建一个 bash 脚本,用于移动/重命名(和/或创建符号链接)所有短于 3 分钟的视频文件。

到目前为止我有这个查找命令:

find "$findpath" -maxdepth "2" -type f -name '*.mp4' -print -exec avprobe -v error -show_format_entry duration {} \;

进而

if [ $duration -ge $DUR_MIN -a $dur -le $DUR_MAX ]
cd "$path2"
ln -sFfhv "$path1$file" "$file2"
fi

答案1

这是你想要的吗?

dur_min=180
dur_max=3600 # or whatever you want the max to be

# find the appropriate files and deal with them one at a time
find "$findpath" -maxdepth 2 -type f -iname '*.mp4' -print |
    while read file ; do
        # read duration
        duration="$(ffprobe -v quiet -print_format compact=print_section=0:nokey=1:escape=csv -show_entries format=duration "$file")"
        # trim off the decimals; bash doesn't do floats
        duration=${duration%.*}
        if [[ $duration -gt $dur_min ]] && [[ $duration -lt $dur_max ]] ; then
            echo "$file is $duration seconds long (rounded down)"
            # do whatever you want, mv, ln, etc.
        fi
    done

注意我使用iname而不是name使其不区分大小写(*.MP4等)

另外,我使用的是 ffprobe 而不是 avprobe (我没有),但你有 ffmpeg 标记,所以我想这可以吗?

相关内容