Пример #1
0
        private void ResizeVideoHelper(string outputPath, string videoPath, string widthArg, string heightArg)
        {
            if (string.IsNullOrWhiteSpace(widthArg))
            {
                throw new ArgumentNullException(nameof(widthArg));
            }
            if (string.IsNullOrWhiteSpace(heightArg))
            {
                throw new ArgumentNullException(nameof(heightArg));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{videoPath}\" -vf scale={widthArg}:{heightArg} \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #2
0
        public void AdjustVolume(string outputPath, string filePath, string volume)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(filePath))
            {
                throw new ArgumentNullException(nameof(filePath));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            string output = fpr.Run($"-i \"{filePath}\" -af \"volume={volume}\" \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #3
0
        public void RemoveAudioFromVideo(string outputPath, string videoPath)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{videoPath}\" -an -codec:v copy \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #4
0
        public void ExtendLastFrame(string outputPath, string videoPath, double seconds)
        {
            if (string.IsNullOrWhiteSpace(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrWhiteSpace(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }
            if (seconds <= 0)
            {
                throw new ArgumentException("seconds must be greater than 0.");
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{videoPath}\" -vf tpad=stop_mode=clone:stop_duration={seconds} -c:a copy \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #5
0
        public string ExtractAudioFromVideo(string outputPathWithoutExtension, string videoPath)
        {
            if (string.IsNullOrEmpty(outputPathWithoutExtension))
            {
                throw new ArgumentNullException(nameof(outputPathWithoutExtension));
            }
            if (string.IsNullOrEmpty(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }

            string outputPath = outputPathWithoutExtension + MediaTypeHelper.GetFileExtensionForAudioCodec(new MediaFileInfo(videoPath).AudioStreams[0].CodecName);

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{videoPath}\" -vn -codec:a copy \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;

            return(outputPath);
        }
Пример #6
0
        public void ReverseVideo(string outputPath, string videoPath)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            string audioArg = string.Empty;

            if (MediaFileInfo.FileHasAudio(videoPath))
            {
                audioArg = "-af areverse ";
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{videoPath}\" -vf reverse {audioArg}\"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #7
0
        public void RotateVideo(string outputPath, string videoPath, bool counterClockwise)
        {
            if (string.IsNullOrWhiteSpace(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrWhiteSpace(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            string transposeArg = counterClockwise ? "2" : "1";

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{videoPath}\" -vf transpose={transposeArg} -c:a copy \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #8
0
        public void CombineVideos(string outputPath, string videoPath1, string videoPath2, bool combineHorizontally)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(videoPath1))
            {
                throw new ArgumentNullException(nameof(videoPath1));
            }
            if (string.IsNullOrEmpty(videoPath2))
            {
                throw new ArgumentNullException(nameof(videoPath2));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            string stackArg = null;

            if (combineHorizontally)
            {
                stackArg = "hstack";
            }
            else
            {
                stackArg = "vstack";
            }

            bool   video1HasAudio = MediaFileInfo.FileHasAudio(videoPath1);
            bool   video2HasAudio = MediaFileInfo.FileHasAudio(videoPath2);
            string args           = null;

            if (video1HasAudio && video2HasAudio)
            {
                args = $"-i \"{videoPath1}\" -i \"{videoPath2}\" -filter_complex \"[0:v][1:v]{stackArg}=inputs=2[v];[0:a][1:a]amerge[a]\" -map \"[v]\" -map \"[a]\" -ac 2 \"{outputPath}\"";
            }
            else if (!video1HasAudio && !video2HasAudio)
            {
                args = $"-i \"{videoPath1}\" -i \"{videoPath2}\" -filter_complex \"[0:v][1:v]{stackArg}=inputs=2[v]\" -map \"[v]\" \"{outputPath}\"";
            }
            else
            {
                throw new NotImplementedException();
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run(args);

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #9
0
        public void AddAudio(string outputPath, string filePath, string audioFilePath)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(filePath))
            {
                throw new ArgumentNullException(nameof(filePath));
            }
            if (string.IsNullOrEmpty(audioFilePath))
            {
                throw new ArgumentNullException(nameof(audioFilePath));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{filePath}\" -i \"{audioFilePath}\" -map 0 -map 1:a -c:v copy -shortest \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #10
0
        public void GetScreenshotAtTime(string outputPath, string videoPath, string time)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }
            if (string.IsNullOrEmpty(time))
            {
                throw new ArgumentNullException(nameof(time));
            }
            if (!Regex.IsMatch(time, FFMPEG_TIME_REGEX))
            {
                throw new ArgumentException($"'{time}' is not a valid time.");
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.Run($"-ss {time} -i \"{videoPath}\" -vframes 1 -q:v 2 \"{outputPath}\"");
        }
Пример #11
0
        public void NormalizeVolume(string outputPath, string filePath)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(filePath))
            {
                throw new ArgumentNullException(nameof(filePath));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 2;

            // First pass.
            currentStep = 1;
            string output = fpr.Run($"-i \"{filePath}\" -af loudnorm=I=-23:LRA=7:tp=-2:print_format=json -f null -");

            int startIndex = output.LastIndexOf("{");
            int length     = output.LastIndexOf("}") - startIndex + 1;
            Dictionary <string, string> loudnormOutput = Newtonsoft.Json.JsonConvert.DeserializeObject <Dictionary <string, string> >(output.Substring(startIndex, length));

            // Second pass.
            currentStep = 2;
            string vcodecArg = string.Empty;

            if (MediaTypeHelper.GetMediaTypeFromFileName(filePath) == MediaType.VIDEO)
            {
                vcodecArg = "-vcodec copy ";
            }

            fpr.Run($"-i \"{filePath}\" " +
                    $"-af loudnorm=I=-23:LRA=7:tp=-2:" +
                    $"measured_I={loudnormOutput["input_i"]}:" +
                    $"measured_LRA={loudnormOutput["input_lra"]}:" +
                    $"measured_tp={loudnormOutput["input_tp"]}:" +
                    $"measured_thresh={loudnormOutput["input_thresh"]}:" +
                    $"offset={loudnormOutput["target_offset"]}:" +
                    $"linear=true:print_format=json {vcodecArg}{outputPath}");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #12
0
        public void Trim(string outputPath, string filePath, string startTime, string endTime)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(filePath))
            {
                throw new ArgumentNullException(nameof(filePath));
            }
            if (!string.IsNullOrEmpty(startTime) && !Regex.IsMatch(startTime, FFMPEG_TIME_REGEX))
            {
                throw new ArgumentException($"'{startTime}' is not a valid time.");
            }
            if (!string.IsNullOrEmpty(endTime) && !Regex.IsMatch(endTime, FFMPEG_TIME_REGEX))
            {
                throw new ArgumentException($"'{endTime}' is not a valid time.");
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            string startArg    = string.Empty;
            string modifierArg = string.Empty;

            if (!string.IsNullOrEmpty(startTime))
            {
                startArg    = $"-ss {startTime} ";
                modifierArg = "-async 1 ";
            }
            else
            {
                modifierArg = "-codec copy ";
            }

            string endArg = string.Empty;

            if (!string.IsNullOrEmpty(endTime))
            {
                endArg = $"-to {endTime} ";
            }

            string args = $"-i \"{filePath}\" {startArg}{endArg}{modifierArg} \"{outputPath}\"";

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.Run(args);
        }
Пример #13
0
        public void CropVideo(string outputPath, string videoPath, double x, double y, double width, double height)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }
            if (x < 0)
            {
                throw new ArgumentOutOfRangeException(nameof(x));
            }
            if (y < 0)
            {
                throw new ArgumentOutOfRangeException(nameof(y));
            }
            if (width <= 0)
            {
                throw new ArgumentOutOfRangeException(nameof(width));
            }
            if (height <= 0)
            {
                throw new ArgumentOutOfRangeException(nameof(height));
            }

            string xArg      = (x < 1) ? $"in_w*{x}" : ((int)x).ToString();
            string yArg      = (y < 1) ? $"in_h*{y}" : ((int)y).ToString();
            string widthArg  = (width < 1 || (width == 1 && x == 0)) ? $"in_w*{width}" : ((int)width).ToString();
            string heightArg = (height < 1 || (height == 1 && y == 0)) ? $"in_h*{height}" : ((int)height).ToString();

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{videoPath}\" -vf \"crop={widthArg}:{heightArg}:{xArg}:{yArg}\" -c:a copy \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #14
0
        public void FlipVideo(string outputPath, string videoPath, bool horizontal, bool vertical)
        {
            if (string.IsNullOrWhiteSpace(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrWhiteSpace(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            string args;

            if (horizontal && vertical)
            {
                args = "hflip,vflip";
            }
            else if (horizontal)
            {
                args = "hflip";
            }
            else if (vertical)
            {
                args = "vflip";
            }
            else
            {
                throw new ArgumentException("Either horizontal or vertical must be true.");
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{videoPath}\" -vf {args} -c:a copy \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #15
0
        public void StabilizeVideo(string outputPath, string videoPath, int optzoom)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }
            if (optzoom != 0 && optzoom != 1 && optzoom != 2)
            {
                throw new ArgumentOutOfRangeException($"{nameof(optzoom)} must be 0, 1, or 2.");
            }


            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 2;

            string dummyOutputPath = System.IO.Path.Combine(System.IO.Path.GetDirectoryName(videoPath), "dummy.mp4");

            if (System.IO.File.Exists(dummyOutputPath))
            {
                System.IO.File.Delete(dummyOutputPath);
            }

            currentStep = 1;
            fpr.Run($"-i \"{videoPath}\" -vf vidstabdetect \"{dummyOutputPath}\"");

            System.IO.File.Delete(dummyOutputPath);

            currentStep = 2;
            fpr.Run($"-i \"{videoPath}\" -vf vidstabtransform=optzoom={optzoom}:crop=black,unsharp=5:5:0.8:3:3:0.4 \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #16
0
        public void GetScreenshotAtEnd(string outputPath, string videoPath)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            MediaFileInfo mediaFileInfo = new MediaFileInfo(videoPath);

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.Run($"-i \"{videoPath}\" -vf \"select='eq(n,{mediaFileInfo.FrameCount - 1})'\" -vframes 1 -q:v 2 \"{outputPath}\"");
        }
Пример #17
0
        public void MakeImagesFromVideo(string outputDirectory, string videoPath, string fps)
        {
            if (string.IsNullOrEmpty(outputDirectory))
            {
                throw new ArgumentNullException(nameof(outputDirectory));
            }
            if (string.IsNullOrEmpty(videoPath))
            {
                throw new ArgumentNullException(nameof(videoPath));
            }
            if (string.IsNullOrEmpty(fps))
            {
                throw new ArgumentNullException(nameof(fps));
            }

            if (outputDirectory[outputDirectory.Length - 1] != '\\')
            {
                outputDirectory += "\\";
            }

            if (System.IO.Directory.Exists(outputDirectory))
            {
                System.IO.Directory.Delete(outputDirectory, true);
            }

            System.IO.Directory.CreateDirectory(outputDirectory);

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{videoPath}\" -vf fps={fps} \"{outputDirectory}%d.png\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #18
0
        public void MakeVideoFromGif(string outputPath, string gifPath)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(gifPath))
            {
                throw new ArgumentNullException(nameof(gifPath));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            // movflags – This option optimizes the structure of the MP4 file so the browser can load it as quickly as possible.
            // pix_fmt – MP4 videos store pixels in different formats. We include this option to specify a specific format which has maximum compatibility across all browsers.
            // vf – MP4 videos using H.264 need to have a dimensions that are divisible by 2. This option ensures that’s the case.
            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.Run($"-i \"{gifPath}\" -movflags faststart -pix_fmt yuv420p -vf \"scale = trunc(iw / 2) * 2:trunc(ih / 2) * 2\" \"{outputPath}\"");
        }
Пример #19
0
        public void MakeVideoFromImages(string outputPath, string imageDirectoryPath, string imagesFileNamePattern, double fps)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(imageDirectoryPath))
            {
                throw new ArgumentNullException(nameof(imageDirectoryPath));
            }
            if (string.IsNullOrEmpty(imagesFileNamePattern))
            {
                throw new ArgumentNullException(nameof(imagesFileNamePattern));
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.Run($"-framerate {fps} -i \"{imageDirectoryPath}\\{imagesFileNamePattern}\" \"{outputPath}\"");
        }
Пример #20
0
        public void AdjustVideoSpeed(string outputPath, string videoFilepath, float newPlaybackRate, float newFramerate = 0, bool alsoChangeAudio = false)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(videoFilepath))
            {
                throw new ArgumentNullException(nameof(videoFilepath));
            }

            if (alsoChangeAudio && !MediaFileInfo.FileHasAudio(videoFilepath))
            {
                alsoChangeAudio = false;
            }

            if (alsoChangeAudio)
            {
                if (newPlaybackRate <= 0)
                {
                    throw new ArgumentOutOfRangeException(nameof(newPlaybackRate));
                }
                if (newPlaybackRate < 0.5f && !(new List <float> {
                    0.25f, 0.125f, 0.0625f, 0.03125f, 0.015625f, 0.0078125f, 0.00390625f
                }).Contains(newPlaybackRate))
                {
                    throw new ArgumentException("Playback rates lower than 0.5 must be: 0.25, 0.125, 0.0625, 0.03125, 0.015625, 0.0078125, or 0.00390625.");
                }
                if (newPlaybackRate > 2 && !(new List <float> {
                    4, 8, 16, 32, 64, 128, 256
                }).Contains(newPlaybackRate))
                {
                    throw new ArgumentException("Playback rates higher than 2 must be: 4, 8, 16, 32, 64, 128, or 256.");
                }
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            float setptsVal = 1 / newPlaybackRate;

            string frameRateArg = string.Empty;

            if (newFramerate > 0)
            {
                frameRateArg = $"-r {newFramerate} ";
            }

            string args;

            if (alsoChangeAudio)
            {
                string audioArg;
                if (newPlaybackRate < 0.5f)
                {
                    audioArg = "atempo=0.5";
                    float temp = newPlaybackRate;
                    while (temp < 0.5f)
                    {
                        temp     /= 0.5f;
                        audioArg += ",atempo=0.5";
                    }
                }
                else if (newPlaybackRate > 2)
                {
                    audioArg = "atempo=2.0";
                    float temp = newPlaybackRate;
                    while (temp > 2)
                    {
                        temp     /= 2;
                        audioArg += ",atempo=2.0";
                    }
                }
                else
                {
                    audioArg = $"atempo={newPlaybackRate}";
                }

                args = $"-i \"{videoFilepath}\" {frameRateArg}-filter_complex \"[0:v]setpts={setptsVal}*PTS[v];[0:a]{audioArg}[a]\" -map \"[v]\" -map \"[a]\" \"{outputPath}\"";
            }
            else
            {
                args = $"-i \"{videoFilepath}\" {frameRateArg}-filter:v \"setpts={setptsVal}*PTS\" -an \"{outputPath}\"";
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run(args);

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }
Пример #21
0
        public void AdjustAudioSpeed(string outputPath, string audioFilePath, float playbackRateModifier)
        {
            if (string.IsNullOrEmpty(outputPath))
            {
                throw new ArgumentNullException(nameof(outputPath));
            }
            if (string.IsNullOrEmpty(audioFilePath))
            {
                throw new ArgumentNullException(nameof(audioFilePath));
            }
            if (playbackRateModifier < 0)
            {
                throw new ArgumentOutOfRangeException(nameof(playbackRateModifier));
            }
            if (playbackRateModifier < 0.5f && !(new List <float> {
                0.25f, 0.125f, 0.0625f, 0.03125f, 0.015625f, 0.0078125f, 0.00390625f
            }).Contains(playbackRateModifier))
            {
                throw new ArgumentException("Playback rates lower than 0.5 must be: 0.25, 0.125, 0.0625, 0.03125, 0.015625, 0.0078125, or 0.00390625.");
            }
            if (playbackRateModifier > 2 && !(new List <float> {
                4, 8, 16, 32, 64, 128, 256
            }).Contains(playbackRateModifier))
            {
                throw new ArgumentException("Playback rates higher than 2 must be: 4, 8, 16, 32, 64, 128, or 256.");
            }

            if (System.IO.File.Exists(outputPath))
            {
                System.IO.File.Delete(outputPath);
            }

            string audioArg;

            if (playbackRateModifier < 0.5f)
            {
                audioArg = "atempo=0.5";
                float temp = playbackRateModifier;
                while (temp < 0.5f)
                {
                    temp     /= 0.5f;
                    audioArg += ",atempo=0.5";
                }
            }
            else if (playbackRateModifier > 2)
            {
                audioArg = "atempo=2.0";
                float temp = playbackRateModifier;
                while (temp > 2)
                {
                    temp     /= 2;
                    audioArg += ",atempo=2.0";
                }
            }
            else
            {
                audioArg = $"atempo={playbackRateModifier}";
            }

            FFmpegProcessRunner fpr = new FFmpegProcessRunner();

            fpr.OnDurationMessage += DurationMessageReceived;
            fpr.OnTimeMessage     += TimeMessageReceived;
            totalSteps             = 1;

            currentStep = 1;
            fpr.Run($"-i \"{audioFilePath}\" -filter:a \"{audioArg}\" -vn \"{outputPath}\"");

            fpr.OnDurationMessage -= DurationMessageReceived;
            fpr.OnTimeMessage     -= TimeMessageReceived;
        }