I have a simple WCF service that allows clients / consumers to upload images, audio or video files to it. After loading, the service should analyze the file and somehow extract the following attributes:
Image: width, height, date, used program
Audio: time of execution, artist, album, genre, bitrate, year of publication.
Video: runtime, width, height, frames / sec, video bitrate, audio bitrate.
Obviously, Windows can display these attributes easily and easily, but how to do it in C #?
c # file-attributes file-properties
rafale
source share