C # Read video metadata on Windows (title, description, year)

Hello everyone who is trying to create a program that views video files and reads the title and description from the file's metadata. I found some docs from microsoft here giving what I need, but how do I access those features? what to use namespaces in c #? I would like to receive any help that can be provided.

+3


source to share


1 answer


In this regard, which you posted, scroll down the page and click on Shell Metadata Providers. There's more details and some C ++ code examples.

Here are some other relevant links:

Read / write metadata of audio / video files

http://www.codeproject.com/Articles/14535/Accessing-WMF-metadata-with-C



https://social.msdn.microsoft.com/Forums/pt-BR/0f36a3b2-4d3d-4842-88a4-bea493bbbace/read-video-filemov-avi-mpg-etc-meta-data?forum=csharpgeneral

C # for reading properties of video files?

Sorry I can't give you anything more specific, however it looks like some tag libraries (i.e. for reading MP3 metadata) might work as well, since the metadata for videos seems to be stored in a similar, if not identical, format. That being said, you can give the TagLib # tag.

https://www.nuget.org/packages/taglib/

+3


source







All Articles