通过 .NET 在 Mac 上获取视频分辨率
我可以在Windows下使用Shell32.dll获取有关视频文件的信息,例如分辨率。
有没有某种方法可以在 Mac 上运行(在 C# 中 - 在 mono 框架下运行)?
I can get informations about video-files like resolution by using the Shell32.dll under windows.
Is there some way to do this (in C# - running under the mono framework) that will work on Mac?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
由于我不清楚这个问题,这里有两部分答案:
检查是否已实现:
System.Windows.Forms.Screen.AllScreens
。目前,有一些代码,但它标有 [MonoTODO] 属性。
AllScreens
:http: //msdn.microsoft.com/en-us/library/system.windows.forms.screen.allscreens.aspx库的来源:http://www.java2s.com/Open-Source/CSharp/2.6.4-mono-.net-core/System.Windows.Forms/System/Windows/Forms/Screen.cs.htm
为此,我将寻求为 Mac 构建的 ffmpeg 并使用命令行参数从文件中提取分辨率信息。
http://jungels.net/articles/ffmpeg-howto.html
Since the question is unclear to me, here are two part answer:
Check if this is implemented:
System.Windows.Forms.Screen.AllScreens
.For now, there is some code for it but it's marked with [MonoTODO] attribute.
AllScreens
: http://msdn.microsoft.com/en-us/library/system.windows.forms.screen.allscreens.aspxSource for the library: http://www.java2s.com/Open-Source/CSharp/2.6.4-mono-.net-core/System.Windows.Forms/System/Windows/Forms/Screen.cs.htm
For that, I would seek
ffmpeg
built for Mac and using command line parameters extract resolution information from the file.http://jungels.net/articles/ffmpeg-howto.html
使用 MonoMac 并查看 MonoMac.AppKit.NSScreen。它应该具有检索任何(如果多个)屏幕的分辨率所需的所有属性。
如果您需要更多文档或示例,您只需浏览 Apple 文档。属性名称将与 MonoMac 提供的名称紧密匹配。
Use MonoMac and look at MonoMac.AppKit.NSScreen. It should have all the properties you need to retrieve the resolution of any (if multiple) screen(s).
If you need more documentation or samples you simply have to browser Apple doc on NSScreen. The properties names will closely match what MonoMac provides.