FFMpegCore
FFMpegCore copied to clipboard
A .NET FFMpeg/FFProbe wrapper for easily integrating media analysis and conversion into your C# applications
This addresses issues [331](https://github.com/rosenbjerg/FFMpegCore/issues/331) and [336](https://github.com/rosenbjerg/FFMpegCore/issues/336). As I said in issue 331, it looks like 4.8.0 separated the handling of standard error from standard output. According to some of the...
ffprobe code to detect black frames: ffprobe -f lavfi -i movie="input.mp4,blackdetect[out0]" -show_entries tags=lavfi.black_start,lavfi.black_end -of default=nw=1 Output displays line by line as each black frame is found. TAG:lavfi.black_start=35.7691 TAG:lavfi.black_start=35.7691 TAG:lavfi.black_end=37.0704 TAG:lavfi.black_end=37.0704...
What I expect: ```CS await FFMpeg.ExecuteAsync(string cmd, IProgress progress = default, CancellationToken cancellationToken = default); ```
this error happens randomly, sometimes it works, sometimes it doesn't. ``` 2022-07-19T15:22:59.903398863Z app[web.1]: Unhandled exception. Instances.Exceptions.InstanceProcessAlreadyExitedException: The process instance has already exited 2022-07-19T15:22:59.905210511Z app[web.1]: at Instances.ProcessInstance.WaitForExit() 2022-07-19T15:22:59.905342235Z app[web.1]: at Instances.Instance.Finish(ProcessStartInfo...
For a project I need to run various audiofilters, so I added them. The filters are agate, highpass, lowpass and silencedetect.
I need access to the sample aspect ratio of videos, so I added SampleAspectRatio to VideoStream. It may be a niche need, but I figured you may want to include...
Is it possible to get snapshot from video memorystream or a get video file from a specific http url path instead of local path? Actually my files are in a...
For my application I would like to use some other AudiofilterOptions then implemented. Is it possible to implement the agate, silencedetect, volumedetect, highpass and lowpass options in this wrapper? So...
could you suggest which command will use for it.
1. Populated the `Channel` enum with other stream types. See [ffmpeg docs](https://ffmpeg.org/ffmpeg.html#Stream-specifiers-1) 2. Added `SelectStreams` options to allow select multiple streams in one call from the user 3. Added `DeselectStream`...