Search code examples
videodrupal-7streaming

Video streaming in Drupal


I used Media Front module to stream video in Drupal 7 with Open Standards Media Player after setting up presets in admin

I can able to run very few mp4 files. Do i need to install any streaming application ?


Solution

  • Look at my answer to under the Mediafront.

    What is MediaFront ?

    The MediaFront module is a front end media solution for Drupal.

    It employs an innovative and intuitive administration interface that allows the website administrator to completely customize the front end media experience for their users without writing any code.

    Below dependencies libraries need to be added and make sure it been included without an error.

    It requires Open Standard Media (OSM) Player It requires minPlayer It requires jQuery-UI ThemeRoller

    Try below to see how it works !

    <!-- Include the core jQuery and jQuery UI -->
    <script type='text/javascript' src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.js"></script>
    <script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jqueryui/1.10.2/jquery-ui.min.js"></script>
    
    <!-- Include the core media player JavaScript. -->
    <script type="text/javascript" src="osmplayer/bin/osmplayer.compressed.js"></script>
    
    <!-- Include the DarkHive ThemeRoller jQuery UI theme. -->
    <link rel="stylesheet" href="osmplayer/jquery-ui/dark-hive/jquery-ui.css">
    
    <!-- Include the Default template CSS and JavaScript. -->
    <link rel="stylesheet" href="osmplayer/templates/default/css/osmplayer_default.css">
    <script type="text/javascript" src="osmplayer/templates/default/osmplayer.default.js"></script>
    

    Calling the OSM Player

    <script type="text/javascript">
      $(function() {
        $("video").osmplayer({
          width: '100%',
          height: '600px'
        });
      });
    </script>
    <video src="http://progressive.totaleclips.com.edgesuite.net/105/e105598_257.mp4" poster="http://www.movieposter.com/posters/archive/main/143/MPW-71686"></video>