-
Notifications
You must be signed in to change notification settings - Fork 198
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Can MediaFile support a byte[] or Stream #101
Comments
Any solutions ? |
I dont think this is possible as the MediaToolkit is just an wrapper to the FFmpeg assembly. The FFmpeg assembly running in another process, cannot stream its data to another process the same way it would be possible with interopt. |
if this library can do it. its possible to do. url : https://stackoverflow.com/questions/15881574/get-image-from-video-stream-in-c-sharp answer : It is possible to capture frames with free VideoConverter for .NET that actually is a wrapper to FFMpeg tool. The idea is using live streaming capabilities (to C# Stream) of VideoConverter for special FFMpeg format "rawvideo" that actually is bitmap stream that can be processed by C# program, something like that:
VideoConverter can read live streams from another .NET Stream (if input format can be used with live stream conversion). |
can instantiating a MediaFile object be updated to support working with byte arrays or streams?
The text was updated successfully, but these errors were encountered: