This is a message.

Forum user: jpgator

Basic information

Registered May 2, 2009
Last login May 7, 2009
Forum posts 3
Direct URL http://www.flowplayer.org/forum/users/10429

Latest forum posts

Posts:

Registered:

» » streaming h264 in iis7

Posted: May 7, 2009

Thanks! I got it up and running with no complications and it's working perfectly.

Posts:

Registered:

streaming h264 in iis7

Posted: May 4, 2009

I've been working on getting h264 streaming going under iis7, with mixed results.

I followed a link on the flowplayer site to code-shop.com and eventually came across this article:

http://h264.code-shop.com/trac/wiki/Mod-H264-Streaming-Internet-Information-Services-IIS-Version2

It has a section for downloading the 'H264-Streaming-Module ISAPI extension for IIS' but I don't see a link (I also checked the html source). According to the article the filename is: mod_h264_streaming.dll.

Does anyone know where I can find this dll (I've looked around the code-shop site but keep getting 'environment not found' errors)?

Thanks

Posts:

Registered:

pseudostreaming plugin - timeline clicks restart playback

Posted: May 2, 2009

I've searched the forums and didn't see anybody else having this issue. Pseudostreaming of mp4 files appears to be partially working.

As expected, the video begins playback before the d/l has completed. However, if I try and click on an unloaded part of the timeline, the timeline position indicator and time is updated (example: time before clicking showed 1:00/3:30 and now shows 2:45/3:30) but the video is played from the start. Once the end time is reached the video stops playing even though it wasn't actually over.

If I allow the d/l to complete and then click on the timeline, the playback starts at the correct position.

Here's my code (running on IIS7):


<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">

<link rel="stylesheet" type="text/css" media="screen" href="/video/playlist.css">
<link rel="stylesheet" type="text/css" media="screen" href="/video/playlist2.css">

<script type="text/javascript" src="/video/jquery-1.3.2.js"></script>
<script type="text/javascript" src="/video/flowplayer-3.1.0.min.js"></script>
<script type="text/javascript" src="/video/flowplayer.playlist-3.0.5.min.js"></script>

<title>Testing</title>
</head>

<body>

<!-- Flowplayer installation and configuration -->
<script language="JavaScript">

// wait for the DOM to load using jQuery 
$(function() { 
     
    // setup player normally 
    $f("player1", "/video/flowplayer-3.1.0.swf", { 
     
        // clip properties common to all playlist entries 
        clip: { 
            //new code
            provider: 'pseudo',
        
        
            baseUrl: 'http://jpocock.com/video', 
            subTitle: 'testing pseudostreaming', 
            time: '??? sec' 
        }, 
         
        // our playlist 
        playlist: [ 
            { 
                url: 'testing_v2.mp4', 
                title: 'testing_v2' 
            },     
            { 
                url: 'sillyaudrey_v2.mp4', 
                title: 'sillyaudrey_v2' 
            },
            { 
                url: 'greenfrog_v2.mp4', 
                title: 'greenfrog_v2' 
            }             
        ], 
         
        // show playlist buttons in controlbar 
        plugins: { 
            controls: { playlist: true },
            pseudo: { url: '/video/flowplayer.pseudostreaming-3.1.2.swf' }            
        } 
    }); 
     
    /* 
        here comes the magic plugin. It uses first div.clips element as the  
        root for as playlist entries. loop parameter makes clips play 
        from the beginning to the end. 
    */ 
    $f("player1").playlist("div.clips:first", {loop:true}); 
     
});
</script>

<div class="clips" style="float:left"> 
     
    <!-- single playlist entry as an "template" --> 
    <a href="${url}"> 
        ${title} <span>${subTitle}</span> 
        <em>${time}</em> 
    </a> 
     
</div> 
         
<!-- the player using splash image --> 
<a class="player plain" id="player1" style="float:left"> 
    <img src="/video/play_text.png" /> 
</a> 
 
<!-- let rest of the page float normally --> 
<br clear="all"/>

</body>
</html>

Any suggestions would be really appreciated.