使用 C# 获取/设置视频标题
我研究了几个库,但只能找到音乐文件的 ID3 库。我需要一种方法来编辑几个常见视频标题的“标题”字段。有人有这方面的经验并可以给我一个起点吗?
如果有一种方法可以实现 WMP 的 API 来编辑流媒体标题的库定义,那也可以。
I've looked into a couple of libraries, and have only been able to find ID3 libraries for music files. I need a way to edit the "title" field of a couple common video titles. Does anybody have any experience with this and could give me a starting place?
If there's a way to implement an API for WMP to edit the library definition of the title for streaming, that would work as well.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您知道您正在处理什么类型的容器文件吗?例如,对 ASF 文件执行此操作的方法与 MP4 文件有很大不同。对于 ASF,您可以使用 Windows Media Format SDK。对于 MP4 文件,存在许多库。我个人会使用 mp4v2。
Do you know what type of container files you're dealing with? The method for doing this with ASF files, for example, is quite a bit different from MP4 files. For ASF, you'd use the Windows Media Format SDK. For MP4 files, a number of libraries exist. I'd use mp4v2, personally.