如何在 C# 中读取 WMV 文件?

发布于 2024-11-25 02:36:49 字数 52 浏览 1 评论 0原文

我想问的第一个问题:“WMV 文件是二进制文件吗?”。如何以字节为单位读取 WMV 文件?

First question i want to ask: "Is WMV file a binary file ?". And how to read a WMV file in bytes ?

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

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

发布评论

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

评论(3

街角卖回忆 2024-12-02 02:36:49

你可以看看codeplex上的AsfMojo,所有解析都是在托管中完成的代码 - 假设您正在寻找解析器。

AsfMojo是一个开源的.NET ASF解析库,提供支持
用于解析 Windows Media Audio (WMA) 和 Windows Media Video (WMV)
文件。

You can take a look at AsfMojo on codeplex, all the parsing is done in managed code - assuming you are looking for a parser.

AsfMojo is an open source .NET ASF parsing library, providing support
for parsing Windows Media Audio (WMA) and Windows Media Video (WMV)
files.

酒废 2024-12-02 02:36:49

是的。

您可以使用 FileStream 读取它。

Yes, it is.

You can read it using a FileStream.

四叶草在未来唯美盛开 2024-12-02 02:36:49

是的,您可以将其读入字节数组,如下所示:

using (BinaryReader b = new BinaryReader(File.Open("file.wmv", FileMode.Open)))
{
    byte[] array = b.ReadBytes(b.Length);
    b.close();
}

请注意,WMV 文件可能很大,一次分块读取可能会更好。请查看此处了解如何这样做。

Yes it is and you can read it into a byte array like so:

using (BinaryReader b = new BinaryReader(File.Open("file.wmv", FileMode.Open)))
{
    byte[] array = b.ReadBytes(b.Length);
    b.close();
}

Note though that WMV files can be big and it might be better to read it in chunks at a time. Take a look here on how to do that.

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