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 capturing images from WebCam and making a video using those images. I am doing all this through AForge. Unfortunately AForge don't support audio. What is the best way to integrate audio with the video. I am creating video in WMV format.
I have two approaches in mind. I can record audio using microphone.
1) I can create a video separately and then somehow integrate captured audio with it.
2) I can integrate audio while creating the video from the images.
Problem is I don't know how I would implement either of these options.
Any ideas? or is there any better approach to achieve it?
Related
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.
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'd like to stream music with aspx, but i dont know how to start!
My general idea is that users, can have their one playlists, and upload their musics, but i dont know how can they hear their own musics trough the website.
The second idea is that the most voted playlist is streamed online for the people who want to hear!
Once users upload their audio files, you can use the HTML5 <audio> tag. AudioJS is a library that will make things easier for you.
I assume this is for education purpose? Otherwise, there are a few IceCast / ShoutCast offerings out there that already have some of this functionality.
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.
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 found there's quite a lot of IP Camera libraries for C# on the net. In case you have worked with any of them, which seem to be the best?
Thanks!
Emgu CV is an open source C# wrapper for Open-CV which is a robust open source library for image processing and more. It has some out of the box webcam image capturing examples using only seven lines of code.
The web cam part look like it was address in this question.
Getting the camera stream through (httprequest)webrequest is not a huge deal. Most cameras will send the video back in an MJPEG stream. The stream is just a multi-part message that is broken up by a delimiter, specified in the head section of the response, and two carriage returns. The data inbetween the delimiters are JPEG images which you can feed into the wrapper for the CV library.
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'm trying to develop a program to recognize a hand gestures and base on the hand gestures, run some commands or move the mouse. how can I use AForge.NET with C#??? it is possible to do that? is there any tutorial out there???? Please help
Here is an article by the author of AForge.NET, although it is not about gesture detection
A gesture sample on codeproject (not using AForge.NET) or another sample (this time using AForge.NET) showing how to uset the library. Hope it helps.