diff --git a/FFMpegCore.Test/AudioTest.cs b/FFMpegCore.Test/AudioTest.cs index aee8982..bd53541 100644 --- a/FFMpegCore.Test/AudioTest.cs +++ b/FFMpegCore.Test/AudioTest.cs @@ -42,13 +42,7 @@ public async Task Audio_FromRaw() var memoryStream = new MemoryStream(); await FFMpegArguments .FromPipeInput(new StreamPipeSource(file), options => options.ForceFormat("s16le")) - .OutputToPipe(new StreamPipeSink(memoryStream), options => - { - options.WithAudioSamplingRate(48000); - options.WithAudioCodec("libopus"); - options.WithCustomArgument("-ac 2"); - options.ForceFormat("opus"); - }) + .OutputToPipe(new StreamPipeSink(memoryStream), options => options.ForceFormat("mp3")) .ProcessAsynchronously(); }