-6ren">
gpt4 book ai didi

bash - 使用脚本从文件中提取日期和 LUFS

转载 作者:行者123 更新时间:2023-12-04 23:20:13 25 4
gpt4 key购买 nike

我在用

for i in *.mp4; do echo "$i:"; ffmpeg -i "$i" -map 0:a -af ebur128=framelog=verbose -f null - 2>&1 | awk '/I:/{print $2}'; done
提取LUFS,然后使用
for i in *.mp4; do ffprobe -v quiet -select_streams v:0 -show_entries format=filename:stream_tags=creation_time -of default=noprint_wrappers=1:nokey=1 "$i"; done
提取 mp4 文件的创建日期。
我怎样才能将这两个命令都作为序列或脚本文件,以便我只运行一次命令,然后运行这两个命令。
我想得到输出;
File name
LUFS
Creation date
如果该命令还将所有输出导出到文本文件中,那就太好了。
请帮忙。
先感谢您!!

最佳答案

for i in *.mp4; do echo "$i"; ffmpeg -i "$i" -map 0:a -af ebur128=framelog=verbose -f null - 2>&1 | awk '/I:/{print $2}'; ffprobe -v quiet -select_streams v:0 -show_entries format_tags=creation_time -of default=nw=1:nk=1 "$i"; done >> lufs.log
示例结果:
audio_and_time.mp4
-20.0
2020-07-22T17:48:25.000000Z
audio_no_time.mp4
-24.0
no_audio.mp4
2020-07-22T17:48:25.000000Z
two_audio_streams.mp4
-13.6
-26.6
2012-08-05T10:18:05.000000Z
no_audio_no_time.mp4

关于bash - 使用脚本从文件中提取日期和 LUFS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68624041/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com