Convert Video Files In To Different Fromats?
Apr 8, 2009
I am going to capture live video from webcam and i want to store that recording in different formats but currently I can store it in only traditional avi format only it consumes lot of disc space.
View 3 Replies
ADVERTISEMENT
Apr 19, 2009
is there any components that can convert swf to avi (or other format)? I found some, but they are too expensive, more than $2000!
View 4 Replies
May 20, 2010
Iam using to vb.net I cannot know convert video to byte>
View 1 Replies
Jul 7, 2009
I am having a problem with converting video files to .flv files. I am using ffmpeg.exe tool to achieve this. Here on my local server when I use ffmpeg.exe tool with c# code everything is working good. But when I deploy the same code with ffmpeg tool on to my hosting server, where as .exe files are not allowed to execute, the code is not running. Is there any other way to achieve the same other than redirecting to video conversion sites because I want to save .flv files on my hosting server.
View 3 Replies
Feb 16, 2010
Well i want to be able to take like 100 images and convert them into an AVI at 10 frames per second so itll be 10 second- or watever, how do i do it?
View 4 Replies
Nov 29, 2011
I am a little programmer in .net. I have a problem with opening flv files in my system. I want to make a software in .net which can open these files. If these files could be converted to wmv or any windows supported software I could open them & to be glad for new coding. Is this possible?
View 4 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
Jun 30, 2010
i was wondering if anyone has some code or a link to some sample code on how to convert a list of images to a gif image or a video file.
View 1 Replies
Dec 4, 2011
I am trying to upload and convert video files then retrieve the filepath. I successfully managed to upload and save the filepath, but I am trying to add the converting functionality. The code I have so far is below.
Protected Sub btnUpload_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnConfirm.Click
If IsPostBack Then
Dim path As String = Server.MapPath("~/UploadedVideos/")
[code].....
View 1 Replies
May 25, 2009
I have the following code found on internet:
Const WM_CAP_START = &H400S
Const WM_CAP_EDIT_COPY = WM_CAP_START + 30
'The first step is to recognize that the video captured by the web cam can be saved as individual images. By displaying a series of continuous images on the client, it is similar to watching a video stream. To capture an image, I have defined the following subroutine:
'---save the video data into the Image global variable---
Public Sub CaptureImage()
Dim data As IDataObject
Dim bmap As Image
Dim ms As New IO.MemoryStream()
'---copy the image to the clipboard---
[Code] .....
The problem is the code fail to retrieve the image from clipboard? What I'm trying to do is connect to a webcam, then save the video stream file on this webcam as bitmap file before transfer to the client side as an array of bytes.
View 2 Replies
Jul 14, 2011
how to convert video file into binary to save to mysql database and how to retrieve it.
View 1 Replies
Oct 8, 2009
I want to know that is there is anyy way to access the video files in vb.net .I know the WMEencoder but tell how to get it in our program
View 4 Replies
Jan 17, 2006
How would one create video files in .NET? Any magical class library out there that allows you to capture images at a certain interval, then combine them into some popular video format? Any ways to capture streaming video from, say, a webcam? I have still images down pat, already made a couple different progs with that. Now looking for ideas on how to go about capturing actual video....
All that I have searched have brought be to DirectX, with DirectShow. Is there a different way? Every DirectX SDK I seem to download has everything but DirectShow (and with dialup, usually, when I say "Download" I mean, "installed it from a cd with the files downloaded by a friend on it" ).
View 3 Replies
Oct 10, 2009
What classes has vb.net got to work with video files...like mpg or mp4i wanna write some code to be able to save a specific video frame to a jpg image.
View 1 Replies
Oct 3, 2010
This is tied in with the other discussion that I started last week about playing audio files using the DirectX classes. If you haven't yet had a look at that other thread,Using the same reference as in the audio application, let's set up a form for video this time. I started with a form that I then placed a split container on and in the lower panel of the split contatiner, I placed the buttons and other controls. Following is how I have mine set up:
Reread the thread on the audio player because the methods are very similar - in fact some are identical! However, this is video and it got a bit more involved as you might expect.The full code is here and I hope you'll find it useful to you. Following is a screenshot of the end result.
View 2 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
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
Apr 16, 2009
How to create video from some image files? if can add some audio, it will be better.
View 2 Replies
Mar 10, 2010
How can I know type of file, music video or something else, in VB 2005 without looking extension.
View 1 Replies
Apr 10, 2009
How do I play audio/video files in VB.NET?
remember to mark the replies as answers.
View 1 Replies
Sep 10, 2009
im new to VB and i would like to ask some questions;Im developing a Media Study Room program and i have this little problem, My problem is that, how can i designate the video in the list box, that when i click variable on the list, it will automatically play the video i designated to a number and its description in the bottom will appear.
View 18 Replies
Jan 4, 2011
1- How to add ?
2- The best in i/o file or in sql database.
3- how to add & update & delete.
View 1 Replies
Feb 14, 2012
I have developed a movie website and I have it hosted in a private webserver.
I had also developed a windows app through which I wanna download my movies from my site.
The movies are of file size 400mb to 700mb. I tried using WebClient but it doesn't works for large file sizes.
private void btnDownload_Click(object sender, EventArgs e)
{
try
{
[Code]....
View 1 Replies
Aug 3, 2009
I have a requirement to combine 2 audio files with a video file is this possible with vb.net.What the user basicly wants to do is select 3 files one video, 2 audio, then click a go button and the files be combined to produce a single file, where do I start?
Am wondering if media encoder can do this or do I need to look in other areas?
View 6 Replies
May 31, 2009
I'm looking for a way to extract .jpg files from .wmv files at given intervals. For instance, if a clip is 1 minute long and I ask for 6 thumbnails, it will give me one every 10 seconds.Can anyone point me in the right direction for anything that may already exist for extracting single frames from video?
View 1 Replies
Jun 8, 2011
how to open and play video files in windows form? also save videos in a specific folder inside the project.
View 2 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
Mar 1, 2009
I am trying to play video files (atleast wmv, avi) from a byte stream in vb.net.Is it possible to direct this data at a wmp control?I have done this successfully with images & picture boxes, just need help with the video.
View 1 Replies
Mar 14, 2009
I have an application and in this application there is a search option. I want the seach to search for all music and video files. I keep getting UnauthorizedAccessException error and I'm assuming its because my application is trying to access a file for witch access is being denied. This is the code that I am using.tbsearch is textbox and results is the listbox that the search results get added to.
Dim dirPath As DirectoryInfo = New DirectoryInfo("G:")
For Each file As FileInfo In dirPath.GetFiles
(tbsearch.Text & "*.mp3", SearchOption.AllDirectories)
results.Items.Add(file.FullName)
Next
Also, how can't I make it so that only the name of the file found is added, not the full path. I know that I could instead of using file.FullName use file.Name but then I can play the media file because the application wont know where to find it. Any code that I could use to add only the found file name to the listox? Perhaps I need another hidden listbox that get the full name and then the results listbox retrieves only the last part of the path?
View 10 Replies
Dec 31, 2011
I have a doubt. I'd like to make a program where you can drag music files (mp3, flac, wav, wma..) and video files (avi, mpeg, mp4, vob, mov) and get the property values of this ones... For example, bitrate, KBps, size, etc, to put them in textbox or listboxes.
View 3 Replies