通过 .NET 在 Mac 上获取视频分辨率

发布于 2024-12-07 01:06:13 字数 101 浏览 1 评论 0原文

我可以在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

野鹿林 2024-12-14 01:06:13

由于我不清楚这个问题,这里有两部分答案:

1. if you want to check the resolution of your screen (desktop):

检查是否已实现:System.Windows.Forms.Screen.AllScreens

目前,有一些代码,但它标有 [MonoTODO] 属性。

AllScreenshttp: //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

2. if you want to check video file resolution

为此,我将寻求为 Mac 构建的 ffmpeg 并使用命令行参数从文件中提取分辨率信息。

http://jungels.net/articles/ffmpeg-howto.html

Since the question is unclear to me, here are two part answer:

1. if you want to check the resolution of your screen (desktop):

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.aspx

Source 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

2. if you want to check video file resolution

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

忘你却要生生世世 2024-12-14 01:06:13

使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文