Link to home
Start Free TrialLog in
Avatar of CahitEy
CahitEy

asked on

ffmpeg

is there any way to read streamed video binary (in a webservice operation) and change format or add logo to it on base 64 without using ffmpeg?
Avatar of abel
abel
Flag of Netherlands image

There are a couple. Not sure why you do not want to use the excellent ffmpeg, but you can consider JMF: http://java.sun.com/javase/technologies/desktop/media/jmf/ or GStreamer: http://gstreamer.freedesktop.org/ or DirectShow plus Direct Media objects (but I'm not sure the latter can do what you ask: chagne format etc).

Since ffmpeg is open source, you can also extract the portions that you need and use that in your code (make sure to link to the GPL though).

In short, you will find out that most formats are supported by ffmpeg and all other libraries and frameworks only support parts. Also, many other frameworks actually use ffmpeg or parts of it....
Avatar of CahitEy
CahitEy

ASKER

is there any complete source for asp.net on http://gstreamer.freedesktop.org i could not find one
ASKER CERTIFIED SOLUTION
Avatar of abel
abel
Flag of Netherlands image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of CahitEy

ASKER

sorry for late return