Recherche avancée

Médias (17)

Mot : - Tags -/wired

Autres articles (96)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

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

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (7171)

  • How to merge a video vertically by taking specific time slots from two different videos with a single ffmpeg command ?

    29 mars 2019, par Krishna CCK

    I have three ffmpeg commands. Two of those commands will trim the input videos and the third will merge into a single video.

    I want to run them as a single command instead of three, which consumes a lot of time because I’m taking output of the 1st and 2nd videos individually.

    Instead, I want to take specific parts from the videos which I need and merge them as a single video.

    The commands which I use for singie videos trim :-

    ffmpeg -y -i video1.mp4 -ss 4 -t 10000 -qscale:v 8 -strict -2 video1out.mp4

    ffmpeg -y -i video2.mp4 -ss 4 -t 10000 -qscale:v 8 -strict -2 video2out.mp4

    ffmpeg -i video1out.mp4 -i video2out.mp4 -filter_complex vstack -strict -2 merge.mp4
  • Revision 3854 : Correction d’un bug qui faisait ne pas s’afficher les videos. Tester la ...

    24 août 2010, par kent1 — Log

    Correction d’un bug qui faisait ne pas s’afficher les videos. Tester la présence du plugin recommander

  • Android ffmpeg concat videos

    30 mai 2016, par farokovic

    I would like to concatenate two videos

    public void genererVideo() {
       String cmd1 = "-y -i /sdcard/video3.mp4 -i /sdcard/video3.mp4 -filter_complex '[0:1] [0:0] [1:1] [1:0] concat=n=2:v=1:a=1 [v] [a]' -map '[v]' -map '[a]' /sdcard/videoo.mp4";

       String[] command = cmd1.split(" ");

       if (command.length != 0) {
           execFFmpegBinary(command);
       } else {
           Toast.makeText(SelectedImageActivity.this, "Abd", Toast.LENGTH_LONG).show();
       }
    }