i have a .vbs file called "ConvertAVItoSW F.vbs"
This is the script for ConvertAVItoSWF .vbs file:
' ////////////////////////////////////////////////
' converting AVI video into FLV using FFMPEG Scout
' ////////////////////////////////////////////////
W = 640
H = 480
Set VideoConverter = CreateObject("F FMpegScout.Appl ication")
VideoConverter. InputFileName = "testvideo. avi"
VideoConverter. OutputFileName = "testvideo. flv"
VideoConverter. Execute
Set VideoConverter = Nothing
I would like to use this script and make it work in .asp
any help?
ive already tried this: (but no luck)
<%@LANGUAGE="VB SCRIPT"%>
<%
W = 640
H = 480
Set VideoConverter = CreateObject("F FMpegScout.Appl ication")
VideoConverter. InputFileName = "testvideo. avi"
VideoConverter. OutputFileName = "testvideo. flv"
VideoConverter. Execute
Set VideoConverter = Nothing
%>
also, this: (but again, no luck)
<%
Dim VideoConverter As New Object
VideoConverter = CreateObject("F FMpegScout.Appl ication")
VideoConverter. InputFileName = "testvideo. avi" ' This file is in root folder
VideoConverter. OutputFileName = "testvideo. flv"
VideoConverter. Execute()
VideoConverter = Nothing
%>
PLEASE HELP!
This is the script for ConvertAVItoSWF .vbs file:
' ////////////////////////////////////////////////
' converting AVI video into FLV using FFMPEG Scout
' ////////////////////////////////////////////////
W = 640
H = 480
Set VideoConverter = CreateObject("F FMpegScout.Appl ication")
VideoConverter. InputFileName = "testvideo. avi"
VideoConverter. OutputFileName = "testvideo. flv"
VideoConverter. Execute
Set VideoConverter = Nothing
I would like to use this script and make it work in .asp
any help?
ive already tried this: (but no luck)
<%@LANGUAGE="VB SCRIPT"%>
<%
W = 640
H = 480
Set VideoConverter = CreateObject("F FMpegScout.Appl ication")
VideoConverter. InputFileName = "testvideo. avi"
VideoConverter. OutputFileName = "testvideo. flv"
VideoConverter. Execute
Set VideoConverter = Nothing
%>
also, this: (but again, no luck)
<%
Dim VideoConverter As New Object
VideoConverter = CreateObject("F FMpegScout.Appl ication")
VideoConverter. InputFileName = "testvideo. avi" ' This file is in root folder
VideoConverter. OutputFileName = "testvideo. flv"
VideoConverter. Execute()
VideoConverter = Nothing
%>
PLEASE HELP!
Comment