Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (92)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (5400)

  • configure : create the tests directory like the doc directory

    15 décembre 2014, par Michael Niedermayer
    configure : create the tests directory like the doc directory
    

    This fixes an issue where the tests directory is not created for out of tree
    builds before its needed

    Tested-by : Dave Yeo <daveryeo@telus.net>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] configure
  • Create screen shot from video dynamically without ffmpeg [on hold]

    3 décembre 2014, par hitesh

    I need to take screenshot from the video after uploading, I already tried ffmpeg but it seems wjile enabling ffmpeg in my Cent OS 6.5 server. (check here )

    So I am looking for other ways to do this, I will be using simple html file tag for getting the video file, then I will be uploading it in server.

    what are other ways than ffmpeg to create screen shot from video dynamically in php or JS.

  • how to create video thumbnail on shared server with ffmpeg ?

    2 décembre 2014, par Manjeet Barnala

    hiii ..
    this code is working on my localhost for creating video thumbnail.
    plz tell me how to enable the FFMPEG on shared server where to place FFMPEG files any idea ????

    &lt;?php
    $ffmpeg = 'ffmpeg.exe';
    // the input video file
    $video = 'video/test_video.flv';
    // where you'll save the image
    $image = 'thumb/test_thumb.jpg';
    //time to take screenshot at  
    $interval = 5;  
    //screenshot size  
    $size = '500x500';  
    //ffmpeg command  
    $cmd = "$ffmpeg -i $video -deinterlace -an -ss $interval -f mjpeg -t 1 -r 1 -y -s $size $image 2>&amp;1";
    exec($cmd);
    echo 'done!';
    ?>