Recherche avancée

Médias (2)

Mot : - Tags -/documentation

Autres articles (52)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Librairies et binaires spécifiques au traitement vidéo et sonore

    31 janvier 2010, par

    Les logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
    Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
    Binaires complémentaires et facultatifs flvtool2 : (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (9544)

  • avcodec/mediacodecdec_common : remove spurious space

    19 février 2018, par Matthieu Bouron
    avcodec/mediacodecdec_common : remove spurious space
    
    • [DH] libavcodec/mediacodecdec_common.c
  • aarch64 : Get rid of a stray double space

    13 octobre 2017, par Martin Storsjö
    aarch64 : Get rid of a stray double space
    

    The extra space got included as part of the expansion of ELF, which
    later interfered with gas-preprocessor which earlier only stripped out
    leftover lines starting with ’#’ if the line started with that char.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavutil/aarch64/asm.S
  • ffmpeg not creating the thumbnail image if the name of the video has space in between

    2 décembre 2017, par Ezhil Kumar

    I installed ffmpeg in my windows 10 PC successfully and got it running. I tired to create a thumbnail of the video i succeeded in it also but when i tried to create a thumbnail of the video which has space in between the names is not creating the thumbnail please help me.

    Eg :

    "demo.mp4" is creating the demo.jpg thumbnail

    "my first video.mp4" is not creating the thumbnail

    This is my Code kindly check it and say me a solution

    &lt;?php

    $ffmpeg = 'C:\FFMPEG\bin\ffmpeg.exe';

    $video  = 'D:\Video\my first video.mp4';

    $image  = 'C:\FFMPEG\bin\my first video.jpg';

    $second = 3;

    $cmd = "$ffmpeg -i $video 2>&amp;1";
    if (preg_match('/Duration: ((\d+):(\d+):(\d+))/s', `$cmd`, $time)) {
       $total = ($time[2] * 3600) + ($time[3] * 60) + $time[4];
       $second = rand(1, ($total - 1));
    }

    $cmd = "$ffmpeg -i $video -deinterlace -an -ss $second -t 00:00:01 -r 1 -y -s 270x200 -vcodec mjpeg -f mjpeg $image 2>&amp;1";
    $return = `$cmd`;

    echo 'done!';
    ?>