VB Code To List All Webcams Or Video Capture Devices?
Jan 19, 2010
I am trying to add the ability to select a camera to my program to start with I need to list the currently installed devices in a drop down menu much like what is used in MSN's webcam selection but the only thing that I can find that comes close is
Declare Function capGetDriverDescriptionA Lib "avicap32.dll" _
(ByVal wDriverIndex As Short, _
ByVal lpszName As String, ByVal cbName As Integer, ByVal lpszVer As String, _
ByVal cbVer As Integer) As Boolean
This, even with 4 different webcams installed, returns "Windows WDM image capture"
View 10 Replies
ADVERTISEMENT
Jun 24, 2011
i just want ask you guys how to capture images from 2 different webcams.is there any dll out there that i can use?
View 14 Replies
Sep 11, 2010
This is my code for loading list of plugged in USB devices:
Private Sub Button5_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button5.Click
ListBox4.Items.Clear()
For Each Drive As IO.DriveInfo In IO.DriveInfo.GetDrives
[code]....
I would like when a button (lets say buttontest) is pressed it will show all files of a CD (only MP3) into ListBox5, then when buttontest2 is pressed the files in ListBox 6 will be copied from the CD to the selected USB device?
View 1 Replies
Oct 20, 2010
is it possible to use avicap32 to capture video with a web cam and save the video as a wmv format instead of avi one
View 1 Replies
Apr 15, 2012
I've been trying to play with DirectShow but it's getting on top of me and my question on here didn't answered so I'm thinking maybe I should go with a different approach. (DirectShow VB.net can't change recording format). <- Where as that 'works' I can't get it in the format I want it, and I don't really understand it so I'd obviousl like to go down the route of something I can get my head around.
I've googled till my fingers are raw trying to come up with an easy way to record video in my vb.net application, it doesn't have to be fancy, just a preview with a start record, stop record button, that's it.
View 2 Replies
Jun 3, 2008
capture picture or video from usb cam?
View 8 Replies
Mar 12, 2009
I'm currently working on a project which is basically Server-Client based. Client is standalone VB executable file and Server is web based.The program is supposed to use webcam as video capture device, stream video footages to server (on website - live feed) and allows users to manually save captured videos into their computer.Thats basically the brief description of my system. I'm starting off working with VB right now and website after I'm done with VB.I'm new to VB, this would be my 1st project on it. I've looked for available sources online and found several VB apps which lets me capture image file through my webcam. Also on MSDN forum, i found recommendations on using "DCAM Server" to stream videos on website but I'm still not sure of how to configure the settings to make it work properly, and of course, don't have a proper website for it to work with yet atm. Also realise I'll need to integrate some .dll files or activeX functions to use video capture function. I don't really know how to use these yet rite now.
View 3 Replies
Jun 7, 2011
Does anyone know What the best SDK for video capture is, WME Sdk?
View 3 Replies
Mar 21, 2008
Hi how can I capture my screen as a video? Like record what I do with my mouse and so on until I want it to stop and have a File of it ready.?
View 6 Replies
Apr 26, 2012
How can I capture a part of screen as video in VB.NET? Can I set the location of the screen capture and the width of the capture area?
View 1 Replies
Aug 10, 2009
VB and programming on Windows as such. Mostly c++/gcc/linux. I am trying to build this VB app that shows a streaming video from a camera and that needs to be overlaid with some custom graphics and text. I used the code published here: [URL] to get the capture part to work. It essentially uses the avicap32.dll that most of you would probably know.
My plan:
1) Capture frames using SendMessage(windowHandle, WM_CAP_EDIT_COPY, 0, 0) and then copy from clipboard.
2) Do whatever graphics/text overlay on the obtained bitmap
3) send it to some picturebox on some form that is being shown
4) Do step 1 to 3 in a loop by a spawned worker thread.
Firstly is this a reasonable way to do what I want? or is there a much more efficient/easier way to about?
Now the specific problem: From my main thread directly if I do step 1 to 3 once UIComponent.DrawImage(VideoComponent.GetBitmap()) It shows me once captured image as it should and all is good.
Just to clarify: UIComponent is an object/instance that launches the Form and owns the picturebox I want to display on. VideoComponent is an object/instance that has started the videocapture and owns the picturebox to which the video is being captured. But if I wrap the same call above in a function and launch a thread that would start with that function as its starting point, I see a blank screen. Again, for testing purpose, I am only doing step 1 through 3 just once.
The thread part of the code is like this:
Private drawthread As Thread
public sub main()
drawthread = New Thread(AddressOf threadfunc)
[CODE]........
View 4 Replies
Jan 14, 2011
when i am recording video my application disappears.
its VB application.
FormBorderStyle : none (is it problem?)
Public Class Form1
Dim resim As New System.Drawing.Point
Dim X, Y As Integer
[Code]....
View 7 Replies
Oct 28, 2010
i am trying to enumerate all IPs on my local network, but i am not having any luck. The only thing i have came up with so far is a really tedius "get my own ip and scan the subnet with pings" which surely isn't the best way? I am really only trying to get the ip of a tivo box, and i can determine it's a tivo by mac address or name. My router lists the "computer name" of the tivos as a long string of numbers with the prefix "tivo".What about broadcasting a ping packet? I could also attempt to connect with telnet to port 31339 on every one of them.
View 8 Replies
Jun 27, 2010
got a good sample of using VB to get a list of Bluetooth devices? And to maybe send and receive a file.Also, I'm using VS2005. Is there any better Bluetooth resources available if I upgrade to VS2010?
View 6 Replies
Nov 5, 2010
I want to make program I want to make a program and I need the user to choose a com device to connect to it I made a drop down box but I want to put devices in it
View 7 Replies
Feb 26, 2007
Visual Basic has a function that allows a video from a webcam to be saved as .AVI file which inherently is too large for data transfer over the internet. I would like to know if there is a function that allows the video to be saved as a .WMV, or a .FLV file so its smaller and allowed to be transfered over the net. Here is a snippet of the code i am using
[Code]...
View 2 Replies
Jul 22, 2009
How to capture a streaming video via .net and save it off to a file on the server? I have seen a few comercial applications (url...) that do it via a client app, but none of them had an API that I could interact with in .NET.
View 6 Replies
Feb 12, 2011
I'm Using vb 2005. I need to capture frames of video files, save theme to my hard drive and later on to gather them thumbnails.How can I capture frames of video files?
View 2 Replies
Sep 8, 2011
I've been trying to find a way to use my video camera as a webcam and do chatting from different programs including mine.
my problem is how can i capture an image from my video camera. below are camera stats[code]....
View 3 Replies
Dec 15, 2011
I have written a code from which using a web camera one can record a video and save it onto the HDD but now according to a client requirement he needs to play that video and capture still images from the video and save it onto a picture box's and here is where i am having issues.
1)when i use windows media player to play the recorded video i don how to capture the image from the video by triggering an event
2) also i need to know if i can play the video on picturebox tool(i tried using the winmm.lib and Mci but it din work out for me)
View 2 Replies
Dec 19, 2011
I am planning to create a proprietary Windows application that will let the user capture video and audio from any other Windows application and stream it onto another computer via Internet. Capturing video is easy, I could simply let the user browse all open windows (or applications) and have the user click the prefered one. But what about audio? Is it possible in Windows to capture the audio from any application?
View 4 Replies
Jun 16, 2009
I'm new in vb, I made a program that capture images from the webcam and I want to save as video file, the code i wrote give an Exception I want to know what is the wrong in this code, help please
HTML
'---capcaptureget function
Function capCaptureGetSetup(ByVal hWnd As Integer, ByVal s As Long, ByVal wSize As Integer)
capCaptureGetSetup = SendMessage(hWnd, WM_CAP_SET_SEQUENCE_SETUP, wSize, s)
End Function
[Code]...
View 1 Replies
Jul 13, 2010
I am student working on some project, We have a developed software using Visual Studios 2005 in which it has both DAQ(Called Tuning, Analog reader) by National Instruments-tools and Video Capturing. When i start viewing camera the analog reader is getting slow. But if i run the vedio capture in other project its not effecting. Now my task is to resolve that effect, Could any please help me out in this issue. If anything is not clear i will send the code so that you may have better clear on what i am asking about.?
I will paste the StartTuning button code " So that you may have some idea of what it is"
Private Sub startButton_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles startButton.Click
FirstLoad = 1
numberOfSamples = Convert.ToInt32(samplesPerChannelNumeric.Value)
If runningTask Is Nothing Then
[Code]...
View 1 Replies
Sep 17, 2009
I need a script that list all the Video Capture Interfaces of a PC, like web-cams or TV cards. Is there a way to do this using VBScript? If yes, any way to start?
View 1 Replies
Mar 20, 2009
I playing a video with Microsoft.Directx.AudioVideoPLayback. My code is pretty simple: I create a Video object wich opens an avi movie, I assign its owner property to panel1 control and then I play the movie.I want to capture images every second from the movie that is being played.I try with panel1's DrawToBitmap() method and then saving the drawn bitmap, but it just draw the panel1, not the image.Is there a way of doing it?.
View 14 Replies
Feb 12, 2012
was checking out the webcam software by Jarno BurgerSourceFiles:It works perfectly fine as it is, but when I created a new start form and created a button to activate the video window, it doesnt work anymore. A blank screen is displayed instead
View 1 Replies
Mar 14, 2009
I'm currently working on a project which is basically Server-Client based.Client is standalone VB executable file and Server is web based.The program is supposed to use webcam as video capture device, stream video footages to server (on website - live feed) and allows users to manually save captured videos into their computer.Thats basically the brief description of my system. I'm starting off working with VB right now and website after I'm done with VB.
I'm new to VB, this would be my 1st project on it. I need help and guidance on how to start please, especially on video capturing functions.I've looked for available sources online and found several VB apps which lets me capture image file through my webcam. Also on MSDN forum, i found recommendations on using "DCAM Server" to stream videos on website but I'm still not sure of how to configure the settings to make it work properly, and of course, don't have a proper website for it to work with yet atm.Also realise I'll need to integrate some .dll files or activeX functions to use video capture function. I don't really know how to use these yet rite now.
View 3 Replies
Feb 2, 2012
currently, im using a webcam in my thesis. one of my objective is to have a realtime camera that can record/capture a video at the same time can capture image. i dont know how to code it in vb.net.
View 1 Replies
Mar 20, 2011
I want to know if I can put live video from a capture device into a picture box using image.fromstream or any other way of getting the video into the picture box.
View 1 Replies
Feb 11, 2009
Does anyone know how to capture (Record) the Windows desktop and save it as a '.avi' or '.mpg' file. This functionality can be done using screen capture / presentation programs like SnagIT:[URL]..I have found many examples showing how to capture from a webcam using the 'avicap32.dll' DLL file but these dont help with this problem.
If you are asking why i dont just use SnagIT its because the interface is overly complex and building my own version would allow me to intergrate it into my existing programs.
View 8 Replies