Recherche avancée

Médias (2)

Mot : - Tags -/media

Autres articles (52)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

  • Supporting all media types

    13 avril 2011, par

    Unlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)

  • Soumettre améliorations et plugins supplémentaires

    10 avril 2011

    Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
    Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)

Sur d’autres sites (8810)

  • Applied maxWidth and maxHeight to the initialWidth and initialHeight. Fixes #391

    4 avril 2014, par jackmoore
    Applied maxWidth and maxHeight to the initialWidth and initialHeight.  Fixes #391
  • PHP Startup ffmpeg Unable to initialize module

    5 mai 2014, par rami-yrm

    When start Apache I get this error..

    How can I solve it ?

    PHP Warning:  PHP Startup: ffmpeg: Unable to initialize module
    Module compiled with module API=20060613
    PHP    compiled with module API=20100525
    These options need to match
    • extension=php_ffmpeg.dll : added to php.ini
    • php_ffmpeg.dll copied to php/ext
    • avcodex-51.dll/ avformat-51.dll/ avutil-49.dll/ pthreadGC2.dll : added to C :\Windows\SysWOW64
  • error of streaming video using fluent-ffmpeg node.js module

    23 mai 2013, par user824624

    I am running the fluent-ffmpeg sample to stream the video, which works well. Now in contract show the video in flashe version based flowplayer, I am now using html5 version flowplayer, but it said the video file not found.

    app.get('/video2/abc', function(req, res) {

     console.log('/video/:filename');
     res.contentType('mp4');
     var pathToMovie = 'public/flowplayer/470x250.mp4' ;
     var proc = new ffmpeg({ source: pathToMovie, nolog: true })
       .writeToStream(res, function(retcode, error){
         if(error) console.error('error',error);
         else console.log('file has been converted succesfully');
       });
    });

    here is my html template.

       
           
           <code class="echappe-js">&lt;script src=&quot;http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.min.js&quot;&gt; &lt;/script&gt;

    &lt;script src=&quot;http://releases.flowplayer.org/5.4.0/flowplayer.min.js&quot;&gt;&lt;/script&gt;

    &lt;script&gt;<br />
      // global configuration (optional)<br />
      flowplayer.conf = {<br />
         rtmp: &quot;rtmp://s3b78u0kbtx79q.cloudfront.net/cfx/st&quot;,<br />
         swf: &quot;http://releases.flowplayer.org/5.4.0/flowplayer.swf&quot;<br />
      };<br />
    <br />
      // force flash with query - only for testing, do not use this switch in production!<br />
      if (/flash/.test(location.search)) flowplayer.conf.engine = &quot;flash&quot;;<br />
    <br />
      // install player manually<br />
      $(function() {<br />
         $(&quot;.player&quot;).flowplayer({<br />
            // reverse fraction of video aspect ratio<br />
            // video dimensions: 470px / 250px<br />
            ratio: 25/47<br />
         });<br />
      });<br />
    &lt;/script&gt;