Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (94)

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

  • Configuration spécifique pour PHP5

    4 février 2011, par

    PHP5 est obligatoire, vous pouvez l’installer en suivant ce tutoriel spécifique.
    Il est recommandé dans un premier temps de désactiver le safe_mode, cependant, s’il est correctement configuré et que les binaires nécessaires sont accessibles, MediaSPIP devrait fonctionner correctement avec le safe_mode activé.
    Modules spécifiques
    Il est nécessaire d’installer certains modules PHP spécifiques, via le gestionnaire de paquet de votre distribution ou manuellement : php5-mysql pour la connectivité avec la (...)

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (5478)

  • Revision 111946 : trailing space

    10 octobre 2018, par root — Log

    trailing space

  • Colour space conversion from yuv44416le to yuv420p10le using ffmpeg command line tool

    1er octobre 2018, par vixiv

    Is there a way to convert from yuv444 planar 16 bit little-endian format to yuv420 planar 10 bit little-endian format using ffmpeg ?

    I have tried the following command but failed :

    ffmpeg -y -pixel_format yuv444p16le -s 4096x4096 -r 30 -i input.yuv -pixel_format yuv420p10le -s 4096x4096 -r 30 output.yuv
  • 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

    <?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>&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>&1";
    $return = `$cmd`;

    echo 'done!';
    ?>