Is there an live video editor of an open source project with an API for my needs?

I need an open source project with API

  • able to read a live video stream (a streaming codec can be any that any API can read), I can provide almost any direct stream)
  • gives me the latest image data for some processing (e.g. brightness / contrast or more exotic filtering).
  • the ability to receive the data that I changed and start transferring this data to some http: // localhost: port / in some format

I need it to be easily accessible from C # (even better, written in C #).

+4
source share
1 answer

FFMpeg.NET may be a good solution for you. FFMpeg itself performs many conversions. It is assumed that support for future filters in the future (perhaps even now). This is the .NET wrapper for it. The FFMpeg system supports video / audio streaming.

You can also try VLC Player , which is also open source.

+4
source

Source: https://habr.com/ru/post/906105/


All Articles