Jump to content

Recommended Posts

Posted (edited)

@thenewkid

yup from AVICapture :

Func _CompressAVI()
     _RunDOS('ffmpeg -i yourvideotoconvert.avi -b 512k -vcodec msmpeg4v2 OutCapture.avi')
 EndFunc ;==>_CompressAVI
 
; Author(s):    Jeremy Landes
 Func _RunDOS($sCommand)
     Local $nResult = RunWait(@ComSpec & ' /C ' & $sCommand, '', @SW_HIDE)
     Return SetError(@error, @extended, $nResult)
 EndFunc ;==>_RunDOS

Cheers, FireFox.

Edited by FireFox

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...