列出所有带有屏幕分辨率信息的电影
我正在将许多文件上传到需要输入帧分辨率的服务器 - “手动”执行此操作非常不方便 - 打开每个文件,然后检查它们的属性。 我想从 Windows 命令行(或 PowerShell,或Linux 控制台)。我怎样才能做到呢?
I am uploading many files to server where I need to enter frames resolution - it's much inconvenient to do it "manually" - open each file and then check their properties.
I would like to get a list of all movie files names (in .mpg and .swf format) with information about their screen resolution from windows command line (or PowerShell, or Linux console). How I can do it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看midentify(mplayer工具);输出并不漂亮,但可以轻松解析,以便您可以以所需的格式呈现它
注意:midentify是
mplayer -identify
IIRC的包装器 >Look at midentify (mplayer tools); The output is not pretty but can easily be parsed so you can present it in the desired format
note: midentify is a wrapper around
mplayer -identify
IIRC