You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi! I'm trying to convert videos to WAV format with ffmpeg to a MemoryStream. When a project is built with an x64 configuration following code works fine, but when the configuration is x86, an exception is thrown. By the way, if instead of OutputToPipe use OutputToFile, then code works fine on both configuration.
StackTrace: at System.IO.Pipes.PipeStream.PipeValueTaskSource.GetResult(Int16 token) at System.IO.Pipes.PipeStream.PipeValueTaskSource.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token) at System.IO.Stream.<<CopyToAsync>g__Core|29_0>d.MoveNext() at System.IO.Strategies.BufferedFileStreamStrategy.<CopyToAsyncCore>d__57.MoveNext() at FFMpegCore.Arguments.InputPipeArgument.<ProcessDataAsync>d__4.MoveNext() at FFMpegCore.Arguments.PipeArgument.<During>d__13.MoveNext() at FFMpegCore.FFMpegArguments.<During>d__30.MoveNext() at FFMpegCore.FFMpegArgumentProcessor.<Process>d__25.MoveNext() at FFMpegCore.FFMpegArgumentProcessor.<ProcessAsynchronously>d__24.MoveNext() at MyProject.Services.Services.VideoConverterService.<ConvertToWavAsync>d__2.MoveNext()
So, any tips how to make it work for x86 too?
The text was updated successfully, but these errors were encountered:
Hi! I'm trying to convert videos to WAV format with ffmpeg to a MemoryStream. When a project is built with an x64 configuration following code works fine, but when the configuration is x86, an exception is thrown. By the way, if instead of
OutputToPipe
useOutputToFile
, then code works fine on both configuration.Exception:
Pipe is broken.
StackTrace:
at System.IO.Pipes.PipeStream.PipeValueTaskSource.GetResult(Int16 token) at System.IO.Pipes.PipeStream.PipeValueTaskSource.System.Threading.Tasks.Sources.IValueTaskSource.GetResult(Int16 token) at System.IO.Stream.<<CopyToAsync>g__Core|29_0>d.MoveNext() at System.IO.Strategies.BufferedFileStreamStrategy.<CopyToAsyncCore>d__57.MoveNext() at FFMpegCore.Arguments.InputPipeArgument.<ProcessDataAsync>d__4.MoveNext() at FFMpegCore.Arguments.PipeArgument.<During>d__13.MoveNext() at FFMpegCore.FFMpegArguments.<During>d__30.MoveNext() at FFMpegCore.FFMpegArgumentProcessor.<Process>d__25.MoveNext() at FFMpegCore.FFMpegArgumentProcessor.<ProcessAsynchronously>d__24.MoveNext() at MyProject.Services.Services.VideoConverterService.<ConvertToWavAsync>d__2.MoveNext()
So, any tips how to make it work for x86 too?
The text was updated successfully, but these errors were encountered: