i think it has something to do with IIS. i can play swf video's using the swf player, but not flv. The MIME type must not be configured with IIS of some kind. I did try adding it according to these instructions:
http://kb.adobe.com/selfservice/view...9439&sliceId=2
but wen i add the extension to IIS, the webpage no longer displays. Im in a right mess, and the only option that looks clear...
User Profile
Collapse
-
no there is no way else unless i move the flv folder to the same location as the mediaplayer.htm l and the player.swf.
Also, i have not looked at it from a remote computer, and no there are no errors or broken links, it just doesnt load the flv, the player just keeps tryin to load the flv file....Leave a comment:
-
yes, my computer name is called 'Steven' (my name) and so to view it on my IIS server, as you all know i have to go into either:
http://Steven/
http://localhost/
http://127.0.0.1
so, http://steven/ffmpeg/FFMPEGScout/pla...diaplayer.html is reading the same file as (E:\Site-Style\htdocs\ff mpeg\FFMPEGScou t\player\mediap layer.html)
but, when its viewed from...Leave a comment:
-
its not quite sorted yet as i fort it would be, my next problem is the flv player:
at the moment im using jeroen wijering's flv player.
this is my script...Code:<html> <head> <script type="text/javascript" src="swfobject.js"></script> </head> <body> <p id="player1"><a href="http://www.macromedia.com/go/getflashplayer">Get
Leave a comment:
-
Thanks for the reply.
i now have the code:
<%
Dim VideoConverter
set videoConverter = server.createob ject("FFMpegSco ut.Application" )
VideoConverter. InputFileName = "testvideo. avi" ' This file is in root folder
VideoConverter. OutputFileName = "testvideo. flv"
VideoConverter. Execute()
set VideoConverter = Nothing
%>
...Leave a comment:
-
i then tried:
<%
Dim VideoConverter As New Object
set videoConverter = server.createob ject("FFMpegSco ut.Application" )
VideoConverter. InputFileName = "testvideo. avi" ' This file is in root folder
VideoConverter. OutputFileName = "testvideo. flv"
VideoConverter. Execute()
%>
but i get this error:
Error Type:
...Leave a comment:
-
<%
set videoConverter = server.createob ject("FFMpegSco ut.Application" )
VideoConverter. InputFileName = "testvideo. avi" ' This file is in root folder
VideoConverter. OutputFileName = "testvideo. flv"
VideoConverter. Execute()
VideoConverter = Nothing
%>
the code above gets the error below:
Error Type:
Microsoft VBScript runtime...Leave a comment:
-
<%
server.createob ject "VideoConverter "
VideoConverter = CreateObject("F FMpegScout.Appl ication")
VideoConverter. InputFileName = "testvideo. avi" ' This file is in root folder
VideoConverter. OutputFileName = "testvideo. flv"
VideoConverter. Execute()
VideoConverter = Nothing
%>
i get this error:
Error Type:
...Leave a comment:
-
.vbs in .asp
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...
No activity results to display
Show More
Leave a comment: