Inserte Pictures And Video - Can't Move The Program To Another Computer Because The Pathname For The Video Will Be Wrong
Jun 22, 2010
I have a vb.net project which i have inserted pictures and video. I inserted a video clip using the Windows Media Player control and it does work. The issue i have is that i can't move the program to another computer because the pathname for the video will be wrong. I know i could change the pathname when i move it but this is not practical because i need to present this program. Does anybody know how to make the video accessible no matter what location the program is at?
View 6 Replies
ADVERTISEMENT
Oct 17, 2011
I creat audio video chat and when calling receivng video and client video is together...I want that client move his or her webcam video where want...as I know it name DROP&DRAP but I`m not know how to do it...
View 5 Replies
Feb 18, 2012
I am creating a bulk media converter. In order to do this I need to go through each line in a list box one after the other and run the conversion function. I am trying to use the following:
For Each item In listVideos.Items
conversion code
Next
However this makes the program want to convert all videos at the same time... is there anyway to get the program to convert one video and then after the conversion code is completed to move to the next one?Should also be noted that I am using FFMPEG for this project.
View 1 Replies
Dec 13, 2009
I need a way to turn a whole folder full of .JPG Files each named 0 - Infinity(each numbered) into a video of some type. I really don't care what type of video at this point as long as its a video.
View 2 Replies
Dec 24, 2009
I am monitoring 12 video feeds from video cameras. Now I have more than 12 cameras, I have 134. But I will only monitor 12 cameras at a time. By Monitoring I mean, I have 12 small video screens on the form that I can see the video. The way I know which cameras are active, so I can monitor them is by a boolean value in a sql database. I run a Store Procedure in my program, and spit out the results in a XML file. I then read the XML file in a loop. This XML file will have a list of the camera names I need to monitor.
So that is for 12 video feeds. Now, I want to have a NEXT or FORWARD button on my monitor form. So when I click this it will give me the next group of cameras, 13 to 24. Now if I only have15 cameras that are active, that means the first group is 1 to 12, then the second group is 13 to 15 cameras. So I will only have 3 to monitor on the second grouping. One thought I had was to have another field in my table to mark as already as an active monitor, so when I run the SP, i will not select that row. But I need to select 12 at a time. Or I can make a number of xml files, one xml file for each grouping of 12, but I need to figure out how I can select the next group without re-selecting the first group. I have no code at the moment, I'm on my non-programming computer.
View 4 Replies
Jul 7, 2009
I was wondering if it was possible to have a program open Firefox, and have it open a bunch of tabs that all go to a link with a video, and then have it automatically play that video?
View 4 Replies
Jul 21, 2011
I would like to create thumbnails into a VB (2005 or 2010) form from video files.
I have a directory (in my hard drive) with video files (.mpg).
How to show video thumbnails for each video file?
My VB code (for images) is attached below and I want to convert it in order to manage video files.
Private Sub ThumbButton_Click(ByVal sender As System.Object, _
ByVal e As System.EventArgs) Handles ThumbButton.Click
Dim imagepath As String
[Code].....
View 2 Replies
Jun 22, 2010
i want to make a video streaming server or a Video Lan chat programe in VB.net
View 1 Replies
Dec 5, 2009
How can i record a video via webcam in visual basic application and then display the video on user's request either live or recorded video.
how to develop video webcam recording application.
View 4 Replies
Jul 12, 2010
i want to buffer a video file on client side when it request.. what syantax i use to buffer the video the video in client's media player
View 1 Replies
Feb 6, 2010
This is what I have got so far:
Private Sub Button6_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button6.Click
If FolderBrowserDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
Dim files() As String = IO.Directory.GetFiles(FolderBrowserDialog1.SelectedPath)
[code]....
View 4 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
Oct 20, 2011
I need to move pictureboxes on the form with mouse as Skype, when video calling..
View 3 Replies
Jan 23, 2008
can play a SWF video but not a Flash Video?
View 14 Replies
May 19, 2009
I want to write an application which will call the remote computer. I mean when I click on call button on my form it should call the remote computer which I want to call and display the video with audio on my form. something like making video call.
View 8 Replies
Dec 25, 2010
how to connect video timer to my program timer how can i make my timer runs , pause and stop with the movie timer?
View 1 Replies
Jan 17, 2012
How to Create Video Games in VB.Net
I realize that this is a very popular subject, especially amongst budding developers. The drive to create games may be the reason you started working with Visual Basic in the first place. After stepping through a few samples and getting the hang of working with user controls on a form, it may be very tempting to start to throw some PictureBoxes and a Timer on a Form and start to implement some game logic. Seems easy enough, right?
To some extent, this is a true statement.You could start to do this and it would be easy enough¦ at first. But when you begin to try to calculate collision and animate or rotate your sprites, you may start to run into some difficulty. And attempts to circumvent the problems often lead to even worse issues.This can cause an endless spiral of misery which could leave you thinking VB just isnt meant to make games!
The initial problem that most people face is the desire to use a PictureBox (or any other control) as the logical Sprite¯ container for the elements in the game. It makes sense since the control appears to provide a lot of the required functionality already and its easy to extend it with more properties as needed.
The issue though is that Windows Forms Controls are designed to be drawn statically“ that is, they arent meant to move around in real-time. You can of course move them at run-time, but this is normally an on-demand operation (something which occurs because the user just took an action like clicking a button or menu item). Attempting to move controls in real-time puts a heavy strain on your application and can cause poor performance quickly.[code]....
View 1 Replies
Jun 14, 2009
I have a AVI program that uses no ocx, controls or api but I would like to support codecs. Is there anyway to send the parsed raw frame compressed stream data from an avi to a codec's dll that i found from the FourCC in the system registry and have it return a DIB or some type of image that i can display?
I already can display images from a uncompressed avi (although only by writing the raw data to the hard drive with a custom header file and then loading the bitmap, because the DIB is backwards and RGB is flipped) and extract the audio sources to the hard drive with a header if its wav. Also I can display subtitles from srt files (cause they are easier to read) using a custom alphabet bitmap image I made.
even if you only know what this is called or have a link to a rfc that would be nice.I would guess there is some sort of standardization of calling codecs and ive tried looking at the source code of some codecs but im not very good at C languages.how to flip that raw data so that it can be displayed by a bitblt without running thru each pixel so its fast enough to display, cause i cant get it over about 26 fps going thru the hard drive.
View 3 Replies
Feb 9, 2011
can i play a video clip in my program?
View 9 Replies
May 3, 2009
I have played .swf file in VB.Net using Shockwave Flash Object. But i need it with controls(mute,volume control.. )
I tried with using Windows MediaPlayer, i can play only .mp3 cannot play .swf or .avi.
View 2 Replies
Apr 7, 2010
Code to Record video from video devices in wmv format using Vb.net
View 2 Replies
May 10, 2009
i havent found much info on this, Basically i would like to convert from Xvid to FLV in my program...?
View 5 Replies
Jul 18, 2009
How would you make a program that recognizes your eye, or something...
dim eye as string = picturebox1
if eye = picturebox2 then
msgbox("It's your eye",64,"Yeap!")
Or if it's too complex maybe just recognize the color?
View 4 Replies
Dec 15, 2011
I need to create a program that can capture video and image. The program is very simple, it just have a screen and a button labeled "Capture". When I click capture, it will capture the image and save it in drive "C:".
View 1 Replies
Jun 1, 2011
Basically I download lots of TV shows and they're never named in the way I like; they're named like this "The Office.S06E22.HDTV.XviD-NoTV."So I was wondering if I had a .txt file with all the episode names I could make a program to rename all the video files in the right order so they're named like this "The Office Season 6 Episode 22 - Secretary's Day."So I want to copy and paste a list of correct episodes names into a text file. Then I want to read the text file, which I already know how to do. Then, and this is the bit I'm struggling with, I want to read the text file, one line at a time, and it renames the top video file with the top episode name and so on.
View 15 Replies
Sep 1, 2010
I've made a video player, that can play almost all popular video formats. But the problem is that I want to add a pan & scan effect to the end user, also if possible a overscan effect also. I'm using MSVidCtl to view and then MSVidFilePlaybackDevice to play and control the file, I've searched the net a lot but found nothing helpful especially in VB.NET, I can use managed DirectX directxaudiovideoplayback.video but the same problem exists, can't find a way to add these pan & scan, zoom in and overscan effects.
View 2 Replies
Jul 19, 2010
I have managed to record my webcam which saves to the desired location and is displaying to the screen while recording but i am trying to run other functions while the webcam video is being recorded but the rest of my form stops functioning until the recording is completed.
Is it possible to record and continue other functions at the same time
View 1 Replies
Apr 13, 2012
One of the things my VB.NET program does is play video files using the Windows Media Player component that comes with VB. My program also switches the WMP component to full screen but once in a while the form will be on top of the full screen video. I am hoping that you fine and knowledgeable folks cat this from happening. The problem occurs when the next video file is played automatically. I'll do my best to post a bit of code but since I don't have much of an idea what might be causing this I'll just have to guess. The project has gotten quite large over the years I've been writing it and if any more code ito post any or all of it, though I'm sure no one would like to go through all 1771 lines of it.
Private Sub WMP_PlayStateChange(ByVal sender As Object, ByVal e As AxWMPLib._WMPOCXEvents_PlayStateChangeEvent) Handles WMP.PlayStateChange
If Stopping = True Then
[code].....
View 7 Replies
Apr 30, 2009
I need to write a program in visual basic 2008 that allows the user to enter in information about a video into textboxes and from there it needs to be sved to a file. The user also has the option to search for a video in the collection by name and the info for that video should go to the textboxes. how i can do this?
View 2 Replies
Sep 18, 2009
I'm using the windows media player (wmp.dll) in vb.net 2008 and would like to know if it's possible to play a specific portion of the video. For example, I would like to start to play the video X minutes from the start and for Y amount of time.
View 1 Replies