vb.net 从特定文件读取尺寸(视频高度和宽度)
好的,我正在使用 Visual Studio 2010。
我需要从 MPEG 文件中读出分辨率。这就是视频的宽度和高度。
我想我需要创建一个链接到 openfiledialog.show() 的按钮,然后通过将其传递给函数来从指定文件获取属性。
我的问题:vb.net 是否有内置方法来收集文件的属性?或者有人知道一个免费的 com 组件可以为我做这件事吗?
okay so i'm working with visual studio 2010.
I need to read out the resolution from a MPEG file. So that would be the video width en height.
I think I need to create a button linked to an openfiledialog.show(), and then get a property from the specified file, by passing it on to a function.
My question: Does vb.net has build-in methods to gather the property of a file? Or does one know a free com component that does it for me?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为 MPG 文件中没有嵌入详细的元数据。但是,请查看这篇文章,其中解释了如何从与文件一起存储的标签。如果右键单击视频文件...
属性
...详细信息
,该文件可能具有其帧宽度
和已填写的框架高度
信息。您可以使用链接中的详细信息提取此信息,以获取相关信息。I don't think MPG files have detailed meta data embedded in them. However, have a look at this post which explains how to get extended data from the tags stored with the file. If you right-click on the video file...
Properties
...Details
, the file may have itsFrame Width
andFrame Height
information filled in. You can extract this information, using the details from the link, to get the relevant information.