C#.NET create WMV file from JPEG images [closed] - c#

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have a set of JPEG images. I want to create wmv files from jpeg images with C#. How can i do that?
Thanks

The easy way will be to use a third party library like Bytescout Image To Video SDK.

Related

Capture Live Video from various Video Devices [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am not sure where I have to start to create .NET application (C#) to "Capture Live Video from various Video Devices."
Any clue?
There is a code project project that does what you are looking for using directx.
http://www.codeproject.com/Articles/7123/Capture-Live-Video-from-various-Video-Devices

DirectShow.net c# - Capture image and capture video in the same project [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I am very new to the DirectShow.net library.
I want to create a project which should use the DirectShow.net library and capture an image as well as video. Is there any link for a sample application of the same?
Thanks
One way of doing this could be that you use a frame grabber in your capture graph... kind of like:
source->frame grabber->avi mux->file writer
You can then capture images in your call back function, while the rest of the graph would continue capturing video.

How to crop a part of a image [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
In c# how can I crop a part of a picture like they do in minecraft
thanks in advance
Use one of the Graphics.DrawImage overloads that allows you to select just part of the source, for example http://msdn.microsoft.com/en-us/library/ms142040.aspx
Draws the specified portion of the specified Image at the specified location and with the specified size.

Scrape Data in C# from images [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Scrape Data in C# from images
Your best bet may be to buy an OCR library. There seem to a variety of them out there.
http://www.componentsource.com/features/scanning-ocr/net-class/index.html

How to converting BMP to AVI C# [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I want to print screen 24 times in 1 second and then convert to AVI or VMW. İT's like video capture. is that possible ?
Check out the Expression Encoder SDK which allows you to do (live) video capturing from the screen in C#/.Net.

Categories