Exemplo n.º 1
0
        public static IAudioUtility GetAudioUtilityShntool()
        {
            var shntoolExe = PathHelper.GetExe(AppConfigHelper.ShntoolExe);

            var shntool = new ShntoolAudioUtility(shntoolExe);

            return(shntool);
        }
Exemplo n.º 2
0
        public static IAudioUtility GetAudioUtilityMp3Splt()
        {
            var mp3SpltExe = PathHelper.GetExe(AppConfigHelper.Mp3SpltExe);

            var mp3Splt = new Mp3SpltAudioUtility(mp3SpltExe);

            return(mp3Splt);
        }
Exemplo n.º 3
0
        public static IAudioUtility GetAudioUtilityWavunpack()
        {
            var wavunpackExe = PathHelper.GetExe(AppConfigHelper.WvunpackExe);

            var util = new WavPackAudioUtility(wavunpackExe);

            return(util);
        }
Exemplo n.º 4
0
        public static IAudioUtility GetAudioUtilityFfmpegRawPcm()
        {
            var ffmpegExe = PathHelper.GetExe(AppConfigHelper.FfmpegExe);

            var ffmpeg = new FfmpegRawPcmAudioUtility(ffmpegExe);

            return(ffmpeg);
        }
Exemplo n.º 5
0
        public static IAudioUtility GetAudioUtilitySox()
        {
            var soxExe = PathHelper.GetExe(AppConfigHelper.SoxExe);

            var sox = new SoxAudioUtility(soxExe);

            return(sox);
        }
Exemplo n.º 6
0
        public static IAudioUtility GetAudioUtilityFfmpeg()
        {
            var ffmpegExe  = PathHelper.GetExe(AppConfigHelper.FfmpegExe);
            var ffprobeExe = PathHelper.GetExe(AppConfigHelper.FfprobeExe);

            var ffmpeg = new FfmpegAudioUtility(ffmpegExe, ffprobeExe);

            return(ffmpeg);
        }