Recherche avancée

Médias (91)

Autres articles (55)

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (6406)

  • ffmpeg dont work in php shell_exec("ffmpeg -i $movie $pic &")

    26 septembre 2016, par josef

    I’m running the following script without any problems :

    <?php
    echo $video  = dirname(__FILE__)."\\MOVIES\\1.mp4";
    echo "<br />";
    echo $pic  = dirname(__FILE__)."\\PICTURES\\1.jpg";
    echo shell_exec("ffmpeg -i  $video  $pic &amp;");

    But when I run this one i get nothing :

    echo shell_exec("ffmpeg -i  C:\xampp\htdocs\Video-share-script\MOVIES\1.mp4  C:\xampp\htdocs\Video-share-script\PICTURES\1.jpg &amp;");

    the value of $video is C :\xampp\htdocs\Video-share-script\MOVIES\1.mp4
    and $pic is C :\xampp\htdocs\Video-share-script\PICTURES\1.jpg
    thank you

  • ffmpeg : is that possible to join 4 small videos in 1 big video ? [duplicate]

    6 décembre 2013, par user300675

    This question already has an answer here :

    I have 4 small videos : 160*120pixels each of different length each.

    My goal is to obtain 1 video of 320*320 pixels :
    - video1 on top left, video2 on top right, video3 on bottom left, video4 on bottom right

    Is this possible with FFMPEG ?

  • FFmpeg and bash, Transcode multiple files to another drive with save path

    18 juillet 2016, par Виктор Гусев

    I have folder that contain files in many different path, for example : folder1/subfolder1/file.mov
    folder1/subfolder2/file.mov

    i need to convert and copy all files to another format, and save all paths after folder 1, for example :
    folder2/subfolder1/file.mp4
    folder2/subfolder2/file.mp4

    I have this script, but it save transcoded files in original location.

    #!/bin/bash
    MOVIES=/Volumes/drive/
    find "$MOVIES" -name '*.MP4' -exec sh -c 'ffmpeg -i "$0" -map 0 -c copy "${0%%.MP4}.mov"' {} \; exit;

    Please help
    Thank you !