Ejemplo n.º 1
0
        private bool CheckForAudio(string path)
        {
            FFmpegService ffmpeg = new FFmpegService();
            var           qa     = ffmpeg.QueryAudio(path);

            return(qa.IsAudio);
        }
 private bool CheckForAudio(string path) => FFmpegService.QueryAudio(path).IsAudio;