Turning Multiple Pictures Into A Video?
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
ADVERTISEMENT
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
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
Aug 17, 2010
I'm making this RPG game, and i want to make it so when i Keydown Left a different Image Appears. And i need it so the picture is transparent
View 3 Replies
Jun 21, 2010
i am trying to make screen saver in vb.net i m using picturebox and timer (for separation of time), but i cannot attach multiple pictures in a single picturebox.
View 1 Replies
Mar 3, 2010
if i have mediaplayer1 in Form1 and mediaplayer2 in Form2 than how can i play and control a single video file in both mediaplayer1 and mediaplayer2 in vb.net
View 1 Replies
Feb 21, 2009
am programming a media player in VB.Net using the Microsoft.DirectX.AudioVideoPlayback namespace. I would like to be able to play video files which have multiple audio streams (eg. several languages or commentary) and select which audio stream to play. As far as I can tell the Video and Audio classes don't provide this functionality.
View 1 Replies
Nov 8, 2009
Im using a black n white image of a human as my back ground and panels to display the same bits in color when the area is clicked. What isn't working for me is the panels are slightly overlapped and one will always be on top of the other. it is transparent so you can see the back ground, but not the panel underneath it when it has a picture in it.
View 6 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
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
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
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
May 21, 2010
Some of you might remember that my application got data from a PLC which is a Short. That is converted into his base 2 equivelant and turned into a boolean array.Problem is, this 16 bit word i'm getting is little endian (right to left) and I want to turn it into a big endian (left to right).
View 3 Replies
Apr 11, 2011
Question is, I basically wrote a Rock Paper Scissors game in VB.NET using If statements and wondered how exactly I would try and work this into a Select Case instead.Professor was pretty awful at teaching things and didn't let us know until today that it had to be Select Case(its due tomorrow
View 2 Replies
Nov 10, 2010
I'm trying to use System.Diagnostics to do some very basic logging. I figure I'd use what's in the box rather than taking on an extra dependency like Log4Net or EntLib.
I'm all set up, tracing is working wonderfully. Code snippet:
Trace.TraceInformation("Hello World")
App.config:
<?xml version="1.0" encoding="utf-8" ?>
<configuration>
[Code].....
That doesn't make sense to me: I just have to declare an instance of the BooleanSwicth to be able to manage (disable) tracing via the .config file? Should I like ... use ... the object somewhere?
View 4 Replies
Aug 24, 2010
This shows a form, header and footer are to be kept fixed. In the middle there is a Group Box that hold a question with different option. When user clicks Next button at the bottom, Group Box loads next question. I want
View 4 Replies
May 16, 2011
I'm trying to turn a string array that contains string , numeric and date values some of the string values are in hebrew when turning them to a single string (using join or through a loop) the order of the values comes out wrong
[Code]...
View 1 Replies
Oct 7, 2011
Basically, my program is supposed to display the list of students that have been entered. (Into a listbox.) Here's the AddStudent code (which works as far as I know)
Public Sub AddStudent(ByVal FullName As String, ByVal Gpa As Integer, ByVal Major As String, ByVal SocialSecurityNumber As String)
_FullName(ENROLLMENT) = FullName
_Gpa(ENROLLMENT) = Gpa[code]......
Here's where the problem comes in...I need to return a value from "GetAllStudents" that can be used with the lisbox. Here's the code for that:
Public Function GetAllStudents() As String
Dim i As Integer = 0
Dim aryStudents(50) As String[code]....
This obviously doesn't work. It gives an error that I can't convert a 1dimensional string to an array.
View 6 Replies
Feb 1, 2009
i have a simple list Format
[Code]...
Its extracted from a text document and put in a multi line textbox in the same format. What I want to do is read each line and put it in an array, however i couldn't find code to read line by line, so I have a series of questions
1. What code do I need to put in an If statement so if it is a return (i.e. the next line) Then it runs
2. Is there a simple way to read line by line in multi textboxs so I don't need to do question 1
View 4 Replies
May 3, 2010
I want to turn a string into an array like so...
dim str1
str1 = "hello world"
arr1(0) = "h"
arr1(1) = "e"
[Code]....
just assume i declared all those vars. it doesnt seem to like my i variable in the Mid function
View 4 Replies
Sep 5, 2011
How do turn text from a textbox say w into a key to be sent?
View 1 Replies
Nov 6, 2011
My coworker's installation of visual studio 2008 breaks every time there's an exception, mine doesn't.
We've been looking for how to stop his from doing this but haven't had any luck. The only difference is that mine was initialized for C# while his was initialized for VB.
Other than reinstalling and choosing the option that says "Optimise for C#" when VS2008 sets up the environment for the first time
View 1 Replies
Jun 10, 2011
I am supposed to be writing a program for my instructor using VB 2008. It is sort of like a quiz program. You build the "light bulb" program but instead of names and colors, it consists of two forms. Question 1 with a "next" button and the second form for Question 2 with a "previous" button. I have no idea how to link the two so that when you click "next" it goes to the second page and vice versa.
View 2 Replies
Nov 29, 2011
When I run the apps, one radiobutton is checked though the checked properties is set to false. No code setting it to true either I tried deleting and creating a new one but it is still setting checked to true at
View 18 Replies
Jan 17, 2010
Notice that some files use vbnewline, some use unicode encoding, and so on and so on.
View 1 Replies
Mar 11, 2009
Is there a way to turn option strict off for just a single line of code?
I'm doing some maintenance work and I need to "cheat" in just one place and I don't want to lower the standard for the entire file.
View 3 Replies