Getting metadata from media file

It is possible to get additional metadata using FFprobe. To run FFprobe with custom arguments:

string result = await Probe.New()
.Start($"-skip_frame nokey -select_streams v:0 -show_entries frame=pkt_pts_time {Resources.Mp4}");

Method returns console FFprobe output in format specified in input arguments.