User Profile

Collapse

Profile Sidebar

Collapse
stecahill
stecahill
Last Activity: Mar 26 '08, 05:37 PM
Joined: Nov 17 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • stecahill
    replied to .vbs in .asp
    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...
    See more | Go to post

    Leave a comment:


  • stecahill
    replied to .vbs in .asp
    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....
    See more | Go to post

    Leave a comment:


  • stecahill
    replied to .vbs in .asp
    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...
    See more | Go to post

    Leave a comment:


  • stecahill
    replied to .vbs in .asp
    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
    ...
    See more | Go to post

    Leave a comment:


  • stecahill
    replied to .vbs in .asp
    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

    %>

    ...
    See more | Go to post

    Leave a comment:


  • stecahill
    replied to .vbs in .asp
    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:
    ...
    See more | Go to post

    Leave a comment:


  • stecahill
    replied to .vbs in .asp
    <%

    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...
    See more | Go to post

    Leave a comment:


  • stecahill
    replied to .vbs in .asp
    <%
    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:
    ...
    See more | Go to post

    Leave a comment:


  • stecahill
    started a topic .vbs in .asp

    .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...
    See more | Go to post
No activity results to display
Show More
Working...