Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (28)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • 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 (...)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (4029)

  • h264 : Rename the jpeg_420 pixfmt list to match the common naming structure

    6 mars 2013, par Martin Storsjö

    h264 : Rename the jpeg_420 pixfmt list to match the common naming structure

  • Covert video file .mod to .mp4 not working with jplayer [closed]

    5 mars 2013, par AbhijitPandya

    I have one .MOD file and i want to play it using jPlayer.
    So i have converted it to mp4 using ffmpeg command as bellow

    ffmpeg -i D :\Images\MOV001.MOD -target dvd D :\Images\MOV0011.mp4

    When i play this video in windows media player it works fine.But when i try to play it using jplayer only sound comes but video doesn't display.

    Please guide me how can i play .MOD file with jplayer.....

  • FFMPEG Covert HTML 5 Video NOT Working

    27 octobre 2012, par Brad

    I am using FFMPEG to convert a video to .mp4, ,ogg, .webm so that it may be viewed in all HTML5 capable browsers using the video tag. The problem is that I manage to convert the video to the 3 required formats but it does not display the video in the video tag, all I get is IE9 : red cross, Firefox : Grey cross, could it be a problem with the conversion or is it something to do with the way I am adding them to the source of the video tag. Here is what I have done :

    1. FFmpeg command line(s) :

      ffmpeg -i test.mp4 test.mp4
      ffmpeg -i test.mp4 test.ogg
      ffmpeg -i test.mp4 test.webm
    2. Here is the video tag :

      <video height="340" width="470" preload="true" autobuffer="true" controls="true">
         <source src="test.ogg" type="video/ogg"></source>
         <source src="test.mp4" type="video/mp4"></source>
      </video>
    3. Webconfig lines for the video support :

      <staticcontent>
         <mimemap fileextension=".mp4" mimetype="video/mp4"></mimemap>
         <mimemap fileextension=".ogg" mimetype="audio/ogg"></mimemap>
         <mimemap fileextension=".oga" mimetype="audio/ogg"></mimemap>
         <mimemap fileextension=".ogv" mimetype="video/ogg"></mimemap>
         <mimemap fileextension=".webm" mimetype="video/webm"></mimemap>
      </staticcontent>

    It would be great if someone could send me the required parameters for ffmpeg to convert the video to the 3 required formats and an example of how they setting the source in the video tag to display them again. And any other advise would be great like how to set the quality up etc when doing the conversion.

    Thanks in advance.