向文件添加标签(主要是视频)
我在这里想要一些指导: 我的程序屏幕记录视频,然后我想用标签存储它们,例如 stackoverflow,我可以找到特定的类别。
我一直在考虑制作 xml 文件,在其中存储视频和标签的路径以及我需要的任何其他属性。
我想知道我应该采取另一种方式吗?我真的希望用户在尝试查找带有标签的视频时能够独立于我的程序。
所以真的是一个推回到正确的方向,否则我将继续 xml 想法...
Ps:如果需要知道的话,这都是在 C# wpf 中完成的。
谢谢。
I wanted some guidance here:
My program screen records videos then I want to store them with tags so like stackoverflow for example I can find specific categories.
I been thinking of making xml files where I would store the path to the video and tags and whatever other attributes I would need.
What I'm wondering is there another way I should go at this? I want really the user to be independent of my program when he's trying to find a video with a tag.
So really a push in the back to the right direction, otherwise I'll continue with the xml idea ...
Ps: This is all done in C# wpf if it is a need to know.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为视频有标准化格式,与 .mp3 文件的 ID3 不同。这意味着无论您选择如何执行,用户都将需要您的程序来读取标签。
比 .XML 文件更简单的方法是将标签直接添加到视频文件的末尾,就像 ID3 所做的那样。
I don't believe there is a standardised format for video, unlike ID3 for .mp3 files. This means that however you choose to do it the user will need your program to read the tags.
Easier than an .XML file would be just to add the tags directly to the end of the video file, just like ID3 does.