Advertisement
Guest User

Untitled

a guest
Dec 31st, 2015
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. Dim p As New Diagnostics.Process, strInput As String, strOuput As String
  2. p.StartInfo.RedirectStandardError = True
  3. strInput = fichero0
  4. strOuput = "c:\inetpub\wwwroot\ejemplo.avi"
  5. p.StartInfo.FileName = "c:\inetpub\wwwroot\ejemplo.mp4"
  6. p.StartInfo.UseShellExecute = False
  7. p.StartInfo.Arguments = String.Format("-i ""{0}"" -b 1500k -vcodec libx264 -s 640x360 ""{1}""", strInput, strOuput)
  8. p.Start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement