寻找可以在 WinForms 应用程序中播放 AVI 文件的组件(.NET 或 COM/ActiveX)

发布于 2024-08-26 02:42:49 字数 1539 浏览 4 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

〃温暖了心ぐ 2024-09-02 02:42:49

您可以尝试 Microsoft for .NET 的 DirectX SDK:download

它包含一个 AudioVideoPlayback 命名空间,其中包含易于在任何 .NET 项目中使用的 Video 类。您可以将 Video 类绑定到 Panel 控件,如下所示:

Video video;

public Form1(string[] args) {
    InitializeComponent();

    video = new Video(dialog.FileName);
    video.Owner = panel1;
}

video 类包含多种播放方法,例如 Play、Pause、Stop,当然还有 FromFile。

在 C# 中使用 AudioVideoPlayback 命名空间的文档和示例:

通过这些 MSDN 文章和我上面的示例代码,您应该能够显示视频并扩展您的类以在播放列表中播放多个视频。

You might try the DirectX SDK from Microsoft for .NET: download

It contains a AudioVideoPlayback namespace with the Video class that is easy to use in any .NET project. You bind the Video class to a Panel control like this:

Video video;

public Form1(string[] args) {
    InitializeComponent();

    video = new Video(dialog.FileName);
    video.Owner = panel1;
}

The video class contains several methods for playback like Play, Pause, Stop and of course FromFile.

Documentation and examples of using the AudioVideoPlayback namespace in C#:

With these MSDN articles and my sample code above you should be able to display a video and extend your class to play multiple videos in a playlist.

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