如何在 C# 中读取 WMV 文件?
我想问的第一个问题:“WMV 文件是二进制文件吗?”。如何以字节为单位读取 WMV 文件?
First question i want to ask: "Is WMV file a binary file ?". And how to read a WMV file in bytes ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
你可以看看codeplex上的AsfMojo,所有解析都是在托管中完成的代码 - 假设您正在寻找解析器。
You can take a look at AsfMojo on codeplex, all the parsing is done in managed code - assuming you are looking for a parser.
是的。
您可以使用
FileStream
读取它。Yes, it is.
You can read it using a
FileStream
.是的,您可以将其读入字节数组,如下所示:
请注意,WMV 文件可能很大,一次分块读取可能会更好。请查看此处了解如何这样做。
Yes it is and you can read it into a byte array like so:
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.