Recherche avancée

Médias (1)

Mot : - Tags -/punk

Autres articles (63)

  • Encodage et transformation en formats lisibles sur Internet

    10 avril 2011

    MediaSPIP transforme et ré-encode les documents mis en ligne afin de les rendre lisibles sur Internet et automatiquement utilisables sans intervention du créateur de contenu.
    Les vidéos sont automatiquement encodées dans les formats supportés par HTML5 : MP4, Ogv et WebM. La version "MP4" est également utilisée pour le lecteur flash de secours nécessaire aux anciens navigateurs.
    Les documents audios sont également ré-encodés dans les deux formats utilisables par HTML5 :MP3 et Ogg. La version "MP3" (...)

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

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

Sur d’autres sites (5765)

  • fftools/ffmpeg : stop using av_stream_get_end_pts() in do_video_stats()

    16 décembre 2021, par Anton Khirnov
    fftools/ffmpeg : stop using av_stream_get_end_pts() in do_video_stats()
    

    It retrieves libavformat's internal dts value (contrary to the
    function's name), which is not only incorrect in general, but also
    unnecessary because we can access the packet directly.

    • [DH] fftools/ffmpeg.c
  • avformat/mov : stop using deprecated codec flags

    26 mars 2017, par James Almer
    avformat/mov : stop using deprecated codec flags
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavformat/mov.c
  • How can we play 2 videos side by side as per the resolution we provide to the output video and adjust the two input videos position

    1er décembre 2023, par Bhavya Nayak

    -> For playing two video side by side as per the output video resolution I provide :-

    &#xA;

      &#xA;
    1. I want output video of resolution 1280x720 so for this.
    2. &#xA;

    &#xA;

    a. First I have trimmed the two video using below command :-

    &#xA;

    ffmpeg -i input_viedo.mp4 -ss 00:00:10 -t 00:00:20 -vf      "scale=1920:1080,pad=1920:1080:0:0:yellow" -c:v libx264 -c:a aac -strict -2 output_video_trimmed.mp4&#xA;&#xA;

    &#xA;

    b. Now to I want to play both the trimmed video into one output video file as per the position I provide , so for this I have tried below command which is not giving the correct output :

    &#xA;

    ffmpeg -i output_video_trimmed_1.mp4 -i output_trimmed_2.mp4 -filter_complex "[0:v]scale=634:360[pad1];[1:v]scale=640:360[pad2];[pad1]pad=1280:360:0:100[tl];[pad2]pad=1280:360:634.752:130.392[br];[tl][br]vstack,scale=1280:720[output]" -map "[output]" -c:v libx264 -preset ultrafast -crf 18 -c:a aac -b:a 1280x720 output_final_video.mp4&#xA;

    &#xA;

      &#xA;
    • In above command I have provide the specific width,height,top,left of the input video I want ,
    • &#xA;

    &#xA;

    But it is not giving me correct output.

    &#xA;

    —> Output I am getting by running this command is attached below :-

    &#xA;

    Output video Image I am getting by running above command

    &#xA;

    Actual output I want

    &#xA;

    —> The issue in above command is while adding top it is not working properly , like top is not affecting the video so I want the solution for that.

    &#xA;