使用 ffmpeg 获取有关 mp3 的信息的命令?
ffmpeg 是否有一个命令可以返回有关 mp3 的信息,例如比特率或采样频率?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
ffmpeg 是否有一个命令可以返回有关 mp3 的信息,例如比特率或采样频率?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(6)
有一个
ffprobe
。简单用法:
将为您提供输出(不显示任何额外的窗口),例如:
There is a
ffprobe
.Simple usage:
will give you output (without displaying any extra window) like:
你可以尝试:
you can try:
您还可以使用:
cbr32
代表(流)恒定比特率
,此处为 32 kbps。11025
是采样率。You can also use:
cbr32
stand for (stream)constant bit rate
, here at 32 kbps.11025
is the Sample Rate.“Michał Šrajer”的答案(使用命令而不是 命令,因为 Grep 和 Findstr 命令之间存在差异。
ffmpeg -i foo.mp3 2>&1 | grep -A1 Duration:
)效果很好,但 Windows 用户必须使用The answer of "Michał Šrajer" (use of command
ffmpeg -i foo.mp3 2>&1 | grep -A1 Duration:
) works well but the windows users must use <findstr "Duration: Stream"> instead of <grep -A1 Duration:> command, because of differences between Grep and Findstr commands.MediaInfo - 用于显示有关音频/视频文件信息的命令行实用程序
ffprobe - ffprobe 媒体探测器
MediaInfo - command line utility to display information about audio/video files
ffprobe - ffprobe media prober
有一个开源免费的“exiftool”程序可以为您提供帮助,比 ffmpeg 和 ffprobe 更好。
因此您可以通过 exiftool 更改一些属性和元数据,例如任何 mp3、jpg、mp4 和许多其他文件格式的旋转、方向和其他属性。
There is an opensource and free "exiftool" program that can help you, better than ffmpeg and ffprobe.
so you can change some properties and metadata by exiftool, such as rotation, orientation and very other properies on any mp3, jpg, mp4 and many other file formats.