如何在C#中读取asf头?
有了一个 wma 文件,如何使用 C# 解析标头?
目的是在内容加密对象(构成 DRM 许可证的一部分)中查找密钥 ID。您使用 WM 格式 SDK 或 WM 权限管理器吗?
Having a wma file, how can one parse the header using c#?
The purpose is to find the Key ID in the Content Encryption Object (that forms a part of the DRM license). Do you use the WM Format SDK or WM rights manager?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
WMA 文件采用 ASF 格式。您可以从 Microsoft 下载 ASF 规范。
WMA files are in the ASF format. You can download the ASF specification from microsoft.
Microsoft Media Format 11 SDK< 中包含示例代码/a> 显示如何从 ASF 文件格式读取标头。
祝你好运!
There are sample code included in the Microsoft Media Format 11 SDK that display how to read headers from the ASF file format .
Good Luck!
框架中有一个WindowsMediaPlayer类。它可以打开 asf 文件并读取其他库 (taglib) 无法读取的特定标头标志(例如预缓冲时间)。
There is a WindowsMediaPlayer class in the framework. It can open asf files and read particular header flags (like prebuffer time), that other libraries (taglib) do not read.