views:

12

answers:

1

how can i read information (the summary) from a video file i am playing in mediaelement like name, poster, album ... like media player do

or even read a file properties ...

A: 

You will have to write your own parser for the file type. If it's a WMV file, you would have to parse the file's header. The ASF spec is located here: http://www.microsoft.com/windows/windowsmedia/forpros/format/asfspec.aspx

Jeremiah Morrill