IOL0ol1
IOL0ol1
> Hi! > > I try to get video from BlackMagic. > But if I restart record process I am getting "FFmpeg error [-1] Operation not permitted" > > What...
ehh, dev is preferred. The filters section I would like as an add-on package, such as FFmpeg4Sharp.Filter, but I'm currently focusing on the codec part, if you want to use...
Thank you for providing practical application scenarios. Using filters is a best practice, [click here -vf framerate=fps=5](https://www.ffmpeg.org/ffmpeg-filters.html#framerate) The dev branch has not yet encapsulated the filter part, you can refer...
> @igece I would like to get video / images from RTP stream / packets too Do you have any code to share about this ? it will be very...
I'll start working on the filters section next. > @IOL0ol1 In the meanwhile, could it be possible to use the MediaFilter implementation from main branch and use it with dev?
https://github.com/IOL0ol1/EmguFFmpeg/blob/dev/example/Other/Mp4ToPcm.cs#L23
> https://github.com/IOL0ol1/EmguFFmpeg/blob/dev/example/Other/Mp4ToPcm.cs#L23 Two outputs are demonstrated, one that converts MP4 to PCM audio data and one that encodes as WAV.
> Currently i copying unmanaged data[0] byte* array to managed byte[] with following code: > > byte[] managed = new byte[resampledFrame.linesize[0]]; for (int i = 0; i < resampledFrame.linesize[0]; i++)...
> > > Currently i copying unmanaged data[0] byte* array to managed byte[] with following code: > > > byte[] managed = new byte[resampledFrame.linesize[0]]; for (int i = 0; i...
> extended_data? im using only data The data size is not enough to represent more than 8 channels of planar audio, and extended_data is required。 In other cases, they are...