Exemplo n.º 1
0
        public string FileDetails()
        {
            FFMPEG ffmpeg = new FFMPEG(FFMPEG.ProgramToRun.FFPROBE);
            var info = ffmpeg.GetMediaInfo(HostingEnvironment.MapPath("~/Media/vid7.mp4"));

            return "aa";
        }
Exemplo n.º 2
0
 public static MediaInfo GetMediaInfo(string path)
 {
     FFMPEG ffmpeg = new FFMPEG(FFMPEG.ProgramToRun.FFPROBE);
     return ffmpeg.GetMediaInfo(path);
 }