Recherche avancée

Médias (0)

Mot : - Tags -/clipboard

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (101)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

  • Contribute to translation

    13 avril 2011

    You can help us to improve the language used in the software interface to make MediaSPIP more accessible and user-friendly. You can also translate the interface into any language that allows it to spread to new linguistic communities.
    To do this, we use the translation interface of SPIP where the all the language modules of MediaSPIP are available. Just subscribe to the mailing list and request further informantion on translation.
    MediaSPIP is currently available in French and English (...)

  • Prérequis à l’installation

    31 janvier 2010, par

    Préambule
    Cet article n’a pas pour but de détailler les installations de ces logiciels mais plutôt de donner des informations sur leur configuration spécifique.
    Avant toute chose SPIPMotion tout comme MediaSPIP est fait pour tourner sur des distributions Linux de type Debian ou dérivées (Ubuntu...). Les documentations de ce site se réfèrent donc à ces distributions. Il est également possible de l’utiliser sur d’autres distributions Linux mais aucune garantie de bon fonctionnement n’est possible.
    Il (...)

Sur d’autres sites (7643)

  • movdec : handle 0x7fff langcode as macintosh per the specs

    21 mars 2012, par Baptiste Coudurier
    movdec : handle 0x7fff langcode as macintosh per the specs
    

    The correct point that seperates ISO and MAC language codes is 0x400
    according to the current QT spec. Old QT specs did not list where this
    seperation is but apparently only defined the meaning of the first 137.

    • [DBH] libavformat/isom.c
    • [DBH] libavformat/mov.c
  • libavfilter/dnn/dnn_backend{openvino, tf} : check memory alloc non-NULL

    14 octobre 2020, par Chris Miceli
    libavfilter/dnn/dnn_backendopenvino, tf : check memory alloc non-NULL
    

    These previously would not check that the return value was non-null
    meaning it was susceptible to a sigsegv. This checks those values.

    • [DH] libavfilter/dnn/dnn_backend_openvino.c
    • [DH] libavfilter/dnn/dnn_backend_tf.c
  • ffmpeg Getting image or thumbnail from video error

    18 juillet 2013, par eMatsiyana

    i have a simple site on which people upload videos, so i want to generate a simple thumbnail from an uploaded video. i have tried every trick and way to do this from a number of websites but i am failing to make the command run without problems.

    $video = $_FILES['vpopupdropin']["tmp_name"];
       $ffmpeg = "C:\\Ffmpeg\\ffmpeg-20130605-git-3289670-win64-static\\bin";
       $image = "manu.jpg";
       $second = 12;
       $size = "150x90";
    $command = "$ffmpeg -i $video -an -ss $second -s $size -vcodec mjpeg      $image";
    echo $command;
       shell_exec($command);

       if(shell_exec($command)){
           echo 'okay';
           echo &#39;<img src="http://stackoverflow.com/feeds/tag/&#39;.$image.&#39;" style='max-width: 300px; max-height: 300px' /> >&#39;;
           }

       else{
           echo &#39; Problem&#39;;
           }

    i Echoed the the command from PHP and this is what i got :
    C :\Ffmpeg\ffmpeg-20130605-git-3289670-win64-static\bin -i C :\xampp\tmp\php27F1.tmp -an -ss 12 -s 150x90 -vcodec mjpeg manu.jpg Problem

    so i took the Command above and entered it in Cmd and got this error

    [image2 @ 00000000000000003d87580] Could not open file : manu.jpg
    av_interleaved_write_frame() : Input/output error. the uploaded file transfers well to where iam saving it and plays well on the site meaning the file is not corrupt. but the thumbnail command seems to fail, i have even checked the other questions on this site but i seem to fail to get the right solution. the paths in the Command are correct and i have verified that at least