Recherche avancée

Médias (0)

Mot : - Tags -/latitude

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

Autres articles (70)

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

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (7067)

  • Révision 21299 : lorsque blocfrag dispose d’attributs data-loading-callback et data-loaded-callba...

    11 avril 2014, par cedric -

    (ajout de points d’entree, aucun changement fonctionnel par defaut)

  • How to concat two videos of different format with stretching the videos

    25 juillet 2020, par Xnox

    I want to concat two videos together but in doing so, the second video is being stretched. Here is my code

    


    $command = "ffmpeg -i ../unprocessed/{$temp_name} -vf \"[in]drawtext=fontsize=47:fontcolor=white:fontfile='../fonts/Nunito/nunito.ttf':text='{$name}':x=10:y=(h) - 120, drawtext=fontsize=35:fontcolor=white:fontfile='../fonts/Amiri/amiri.ttf':text='{$second}':x=10:y=(h) - 80, drawtext=fontsize=30:fontcolor=white:fontfile='../fonts/Amiri/amiri.ttf':text='{$hospital}':x=10:y=(h-40)[out]\" -y ../unprocessed/{$edited}";
    system($command);
    unlink("../unprocessed/{$temp_name}");

    $video_1 = $_POST["video1"];
    $video_2 = $edited;

    try{

      //generating intermediate files
      $intermediate1 =  "intermediate".rand(100000, 1000000000).rand(100000, 1000000000).".mpg";
      $command = "ffmpeg -i ../unprocessed/{$edited} -qscale 0 -r 25 ../unprocessed/{$intermediate1}";
      system($command);
      unlink("../unprocessed/{$edited}");

      $intermediate2 =  "intermediate".rand(100000, 1000000000).rand(100000, 1000000000).".mpg";
      $command = "ffmpeg -i ../admin/videos/{$video_1} -qscale 0 -r 25 ../unprocessed/{$intermediate2}";
      system($command);

      $outputfile_temp = "upload".rand(100000, 1000000000).rand(100000, 1000000000).rand(100000, 1000000000).".mp4";

      $command = "ffmpeg -i \"concat:../unprocessed/{$intermediate1}|../unprocessed/{$intermediate2}\" -c copy ../merged_videos/{$outputfile_temp}";
      system($command);
      unlink("../unprocessed/{$intermediate1}");
      unlink("../unprocessed/{$intermediate2}");

      $outputfile = "upload".rand(100000, 1000000000).rand(100000, 1000000000).rand(100000, 1000000000).".mp4";
      $command = "ffmpeg -i ../merged_videos/{$outputfile_temp} ../merged_videos/{$outputfile}";
      system($command);
      unlink("../merged_videos/{$outputfile_temp}");


    


  • FFMPEG - overlaying 4 videos not working, 2 videos is working perfectly

    31 octobre 2019, par Taapo

    I’ve been trying to overlay videos using ffmpeg.

    Pretty simple, using ProRes 4444 (with alpha channel).

    When I overlay two videos, there is no problem.

    When I try to overlay more than two, it only shows the first two entries. Is FFMPEG only capable of overlaying two videos ?

    ffmpeg.exe -y \
    -i test-transparent-03.mov \
    -i test-transparent-04.mov \
    -i test-transparent-02.mov \
    -i test-transparent-01.mov \
    -filter_complex overlay -c:v libx264 output.mp4

    This command is working perfectly :

    ffmpeg.exe -y \
    -i test-transparent-03.mov \
    -i test-transparent-04.mov \
    -filter_complex overlay -c:v libx264 output.mp4