FFMPEG File Conversion To FLV
Dec 8, 2009
I'm using FFMPEG for the first time. The upload works. The *.avi file is uploaded to the virtual path just fine. When it runs through and attempts the conversion to an FLV file, it doesn't error out - but it doesn't convert the file either. The ffmpeg.exe and pthreadGC2.dllare in the same folder ({virtual_path}uploadvideo). I do see a cmd window flash when the process starts but can make out anything displayed.
Here's my code:
File Upload
Protected Sub Submit1_ServerClick(ByVal sender As Object, ByVal e As System.EventArgs) Handles Submit1.ServerClick
If Not File1.PostedFile Is Nothing And File1.PostedFile.ContentLength > 0 Then
Dim GetFileName As String = File1.PostedFile.FileName
Dim fn As String = System.IO.Path.GetFileName(File1.PostedFile.FileName)
[Code] .....
View 2 Replies
ADVERTISEMENT
Mar 21, 2011
Its been a while since I posted here as i've moved away from VB for the last few months. Anyway, seen as the support is so good here, i'm having with ripping MP3 files out of a MP4 video using ffmpeg.
Here's my code so far, but for some reason it doesn't want to work for me
Imports System.IO
Public Class Form1
Dim process As New Process
[Code]....
View 5 Replies
Jan 25, 2012
how to convert videos files using vb.net and ffmpeg. But as far as i know we cannot use multiple threads to run same exe file to convert files. Do you know how i can convert multiple videos using one external exe file (ffmpeg)?
I have not tried because my computer time was over. So iam just asking a general doubt whether if we attach it to one process then wouldn't the process get locked? Then can we multi-thread this application or not ?
View 1 Replies
May 14, 2008
I'm trying to put together a simple GUI for ffmpeg (a command-line video conversion, encoder, decoder etc..), mostly for video encoding/conversion... Now I am able to interact with ffmpeg.exe (the command line app that does all the big conversion work) with the System.Diagnostic.Process class (I know how to start the process with the arguments I need etc..) But the problem is, when I'm converting a moderately long video file it can take several minutes to complete...
[Code]...
View 11 Replies
Oct 10, 2009
I am making a GUI for ffmpeg. And i want a own namespace for it. So you can ex. write in Form1.vb:
ffmpeg.Execute("The command to execute")
or
ffmpeg.SetType.CBR
But i can't get it to work.This is what i have:
Imports System.IO
Namespace ffmpeg
Public Class Execute
[code]....
In the execute option, it gives me an error of Execute is a type in ffmpeg, not an expression.In the SetType thing, the two subs doesn't even come up when i call it.
View 1 Replies
Sep 21, 2010
I'm working on a website where we'll be getting a lot of videos to be uploaded. To keep things simple and secure, I'm just writing VB.net windows app to suck all the files in a directory in, allow you to set some options, and start the encode by spawning a new FFMpeg process.
[Code]...
View 5 Replies
Apr 8, 2009
a user will enter a number, n, which ranges from 1 to 30. they will also enter a "P" or an "S" (sum or product). depending on which was selected, it will calculate the sum or product of the numbers from 1 to n.i'm having a conversion error on line 5 stating "Conversion from string "S" to type 'Double' is not valid." [code]
View 2 Replies
May 11, 2012
I'm creating a program in VB.net that does the following:At a high level I receive a file in email, put the attachment in a monitored folder, import the text file to excel, format the excel, and then email the excel file to a list of recipients.
Here is my plan:
Completed: Outlook VBA to monitor all incoming email for specific message. Once message is received drop attached .txt file in a specific network folder.
Completed: (VB.net) Monitor folder, when text file is added begin processing
Not Complete: (VB.net) Import text file to Excel
Not Complete: (VB.net) Format Excel Text file.(add in a row of data,format column headers with color/size, add some blank columns, add data validation to some of the blank columns that allow drop down selections)
Completed: (VB.net) Save file.
Completed: (VB.net) Send file to list of recipients.
Obviously the items above that are not complete are the bulk of the work, but I wanted to get some advice on what some of you think would be the best way to approach something like this. The import and formatting of the file are causing me some problems because I just can't decide what would be the most efficient way to do this.
The way stated above. Import to excel -> format Having a template excel that contains all of the formatting already done for me and attempting to transition the data to this document (no clue if/how I can do this). Is it even feasible? Have the template already created and then import the text file to a new excel file, then transition that data to the excel template?
Something I thought about, in terms of formatting the document, was to record a macro of me doing all of the formatting that I'm going to need and then attempt to convert that macro into my vb.net code, but I'm not sure if that will work. I will need to verify that the text file comes in the EXACT format every time correct?
View 5 Replies
Feb 9, 2011
Need explanation on basics of the file format conversion in VB.net. I absolutely don't know anything about the file format conversion, so a starter here.
View 2 Replies
Jun 11, 2009
I want Excel data in a text file.
View 5 Replies
Dec 16, 2011
This is the last and most difficult part of my first application conversion from VB6 to VB.NET.
View 3 Replies
May 11, 2012
I'm unsure if this should be in Office Automation or here, but I opted for here because I'm creating a VB.Net program to handle all of the office automation and my questions are a combination of the VB.net portion and some of the VBA formatting. At a high level I receive a file in email, put the attachment in a monitored folder, import the text file to excel, format the excel, and then email the excel file to a list of recipients. [code]Obviously the items above that are not complete are the bulk of the work, but I wanted to get some advice on what some of you think would be the best way to approach something like this. The import and formatting of the file are causing me some problems because I just can't decide what would be the most efficient way to do this. Having a template excel that contains all of the formatting already done for me and attempting to transition the data to this document (no clue if/how I can do this). Is it even feasible? Have the template already created and then import the text file to a new excel file, then transition that data to the excel template?
Something I thought about, in terms of formatting the document, was to record a macro of me doing all of the formatting that I'm going to need and then attempt to convert that macro into my vb.net code, but I'm not sure if that will work. I will need to verify that the text file comes in the EXACT format every time correct?
View 1 Replies
Jan 31, 2009
i have a little problem. i m trying to import a text file using vb2008 text file have following information288536
[Code]...
when i convert date and time string into datetime type using datetime.parse(string) it run ok but when it reach to 4th row it show error, i think because "date" string is not in proper format (dd/mm/yyyy HH:mm:ss)how to eliminate this problem
View 1 Replies
Nov 15, 2011
I'm looking for a way to save text directly to an encrypted file, without saving it to a plain text file and encrypt this text file afterwards.
I don't care about the encryption type used as long as it is easy to implement and secure enough..
View 1 Replies
Aug 31, 2009
Here's 2 questions that I hope someone can help me on. This is in VB.net. I keep on getting this error 'java.io.bufferedInputstream.count is not accessible in this context because it is 'Protected Friend'. Does anyone know how to fix this error?
The other errors i get are "Overload resolution failed because no accessible 'Val' accepts this number of arguments". I have listed below the code that I have coverted from Java. Where is my mistake?'the underlined areas are where it is giving me errors.
[Code]...i
View 7 Replies
Aug 27, 2009
I'm new to .net. I would like to know how to convert a text data in string or in a file into a simple byte array[ ] format.
View 3 Replies
Mar 9, 2012
When I try to read the file, I am getting an error = "Option strict on disallows implicit conversion from string to Char"
[Code]...
View 6 Replies
Sep 7, 2010
I have a snippet that I need help modifying to work in VB.NET.1. Attribute VB_Name = "DBModule" gives error 'Declaration expected'.Am I missing a library reference here?Also, the project conversion tool chokes on four statements, one of which is: "{F9043C88-F6F2-101A-A3C9-08002B2F49FB}#1.2#0"; "comdlg32.ocx"Can I simply find the file and place it in the project directory? How would I reference it then? Additionally, The project converter lists errors locating the following files: msflxgrd.ocx, AResize.ocx, richtx32.ocx, and msmapi32.ocx. TIA
View 5 Replies
Nov 1, 2006
public class FloatToolStrip :ToolStrip { private Form floatForm; public Form FloatForm { get { return floatForm; }} c# is case sensitive so floatForm and FloatForm are different.
vb.net is case insensitive so when the inline compiler sees FloatForm, it says it has already been declared.
how do I convert the blue code into vb.net?
View 10 Replies
May 9, 2012
convert this code (Structure and its members) which is in VC++ to VB.NET.
#define GBIF_IP_MAC_NAME_CHAR_ARRAY_LENGTH 16
#define GBIF_STRING_DATATYPE unsigned char
typedef struct
{GBIF_STRING_DATATYPEucMacAddress[GBIF_IP_MAC_NAME_CHAR_ARRAY_LENGTH];// unsigned since the adress components can be higher than 128
[Code]...
View 24 Replies
May 10, 2010
I've looked for flv to mp4 conversion tutorials and library's on google but I haven't had any luck yet. I assume it's a complex process that requires flv and mp4 library's. I wont be affended if no one knows.
View 15 Replies
Feb 23, 2011
I am converting an old PHP porject over to ASP.Net (vb) and wondered if someone could point me in the right direction in order to convert this final snippet of code.There are 3 functions that are called from within this and i ahve converted those already and to be honest is the session arrays that are giving me the headache.I have thought about using Hashtables and DirecCasting but this was just confusing me further.[code]
View 1 Replies
Jan 13, 2011
I'm working on a cryptography program that was written in VB6 and modernizing it in VB.NET and I've run into a roadblock with the conversion from strings to byte arrays and then back again. I've tried a lot of stuff and it's probably something really simple.
The VB6 code used to look like this:
Public Function DecryptByteArray(byRef arrByteArray() As Byte, ByVal Password As String)
Dim strInput As String
Dim strOutput As String
[code]....
View 2 Replies
Jun 12, 2011
convert this code to VB8?
Private Sub mnuPoints_Click() mintBooks = mintBooks + Val(txtBooksRead) mintReaders = mintReaders + 1 mintBonusPoints = BonusCalculation(Val(txtBooksRead)) lblBonusPoints = mintBonusPoints
End Sub
Private Function BonusCalculation(br As Integer) As Integer
[code]....
View 1 Replies
Oct 1, 2010
I have a control that overrides the protected GetService method and assigns it to the IServiceProvider interface:
Class MyControl
Inherits Control
Implements IServiceProvider
[Code].....
I'm struggling to convert this to c#. I've tried implicit v. explicit but I must be getting the syntax wrong.
View 3 Replies
Oct 29, 2009
I need help converting this into PHP:
Public Function Encrypt(ByVal text As String) As String
Dim charSet1 As String, charSet2 As String, i As Long
Dim pos As Long, encryptedChar, encryptedText
charSet1 = " ?!@#$%^&*
[Code]...
I'm making a text to hash thing like presented above but in PHP for my website.. The code above is home-made so its nothing like MD5 or SHA1. But if you guys do know a way to encrypt and decrypt MD5 in Visual basic 2008 please show me! (this must also work for PHP).
View 1 Replies
Jan 26, 2011
I'm trying to convert the following C# code to VB. The reults from online conversion pages I have tried doesn't make sense to me and VS2010 marks them as flawed. My limited C# knowledge about events isn't enough to solve this one.
[Code]...
View 1 Replies
Nov 15, 2010
I'm having a bit of issue converting the following t-sql statement to Linq (using 4.0 entity framework)
[Code]...
View 1 Replies
May 20, 2010
I need to convert below mentioned file formats to pdf using C#/VB.Net. User will upload the file using FileUpload control and system will returns the pdf file after converting the document.
doc/docx to pdf
xls/xlsx to pdf
ppt/pps to pdf
Does ITextSharp provide such facility ? Please Only mentioned open source or free libraries.
View 4 Replies
Feb 9, 2010
I'm currently working for a client who owns a custom developed ASP/VB6/SQL2k5 3-tiered web application... The application has been developed over the course of 10 years by several different companies... I have a team who is in the process of rewriting components of this application over to a ASP.NET/C# applications, leaving the structure of the back end database in its current state (ie: no redesign of the database)... As you know, this is a very long tedious process when performed correctly... Our client is looking for a "wizard" type conversion tool or process instead of the redesign of the web UI and business objects... Several people on my team (including my architect and I) continue to tell our client this is not possible, that a full rewrite of the application is required... Can someone just validate my thoughts on this? Here are some of the technical specifications of the legacy application:
· VB COM objects are heavily reliant upon ADOR recordsets
· ~150k lines of VB code spread across 6 COM objects
[code]....
View 3 Replies