Recherche avancée

Médias (91)

Autres articles (25)

  • Soumettre bugs et patchs

    10 avril 2011

    Un logiciel n’est malheureusement jamais parfait...
    Si vous pensez avoir mis la main sur un bug, reportez le dans notre système de tickets en prenant bien soin de nous remonter certaines informations pertinentes : le type de navigateur et sa version exacte avec lequel vous avez l’anomalie ; une explication la plus précise possible du problème rencontré ; si possibles les étapes pour reproduire le problème ; un lien vers le site / la page en question ;
    Si vous pensez avoir résolu vous même le bug (...)

  • Installation en mode standalone

    4 février 2011, par

    L’installation de la distribution MediaSPIP se fait en plusieurs étapes : la récupération des fichiers nécessaires. À ce moment là deux méthodes sont possibles : en installant l’archive ZIP contenant l’ensemble de la distribution ; via SVN en récupérant les sources de chaque modules séparément ; la préconfiguration ; l’installation définitive ;
    [mediaspip_zip]Installation de l’archive ZIP de MediaSPIP
    Ce mode d’installation est la méthode la plus simple afin d’installer l’ensemble de la distribution (...)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

Sur d’autres sites (6294)

  • FFMPEG : How to extract a PNG sequence from a video, remove duplicate frames in the process and keep the original frame number ?

    16 mai 2020, par Simon

    I have a recording of an old game which has variable framerate. Since I want to process individual frames to upscale and modernize the footage I would like to avoid any duplicate frames. I know that I can use this function to extract all frames from a video :

    



    ffmpeg -i input.mov -r 60/1 out%04d.png


    



    And I know that I can remove duplicate frames using this function :

    



    ffmpeg -i input.mov -vf mpdecimate,setpts=N/FRAME_RATE/TB output.mov


    



    However, the above command removes duplicate frames and puts frames next to each other whereas in order to keep a timecode of sorts it would be a lot more useful to be able to extract PNGs with frame number (video is progressive 60fps) but without all of the duplicates.

    



    So, the question is : what if I want to extract PNG files BUT maintain the original corresponding framenumber within the sequence ? So, if we have a video with 10 frames and frames 2-8 are duplicates it spits out 1.png 2.png 9.png and 10.png ? How do I combine both bits of code listed above ?

    


  • how to add subtitle and watermark on multi videos at same time in ffmpeg ?

    16 novembre 2020, par shadymelad

    i want to know how to add sutitle and watermark for maulti videos on one folders by FFMPEG like game of thrones all episode ?
i make watermark for all folders one time by useing thie code

    


    


    for %i in ("C :\Users\fady\Downloads\convert*.mp4") do ffmpeg -i "%i"
-i C :\Users\fady\Downloads\convert\fady.png -filter_complex "overlay=main_w-overlay_w-10:10" -codec:a copy
"C :\Users\fady\Downloads\convert\new% ni.mp4"

    


    


    but i want to add subtitle on the code
any one can help ?

    


    update
i try this code

    


    


    ffmpeg -i .mkv -i Cima2u.png -filter_complex "[0]subtitles=.srt[v] ;[1][v]scale2ref=w='iw*10/100':h='ow/mdar'[wm][vid] ; [vid][wm]overlay=main_w-overlay_w-5:main_h-overlay_h-5" -preset fast % ni.mp4

    


    


    but this for one file if i want to make it for folder many files can i ?

    


  • how to create video file with image and audio using ffmpeg library

    12 août 2013, par BlueG

    I want to merge IMAGE + AUDIO and convert them into video using FFMPEG library. I also tried with some code snippet but it's not working properly.
    Please help.

    File mf = Environment.getExternalStorageDirectory();
      String livestream = mf+"/neutral.jpg";
      String folderpth = mf+"/navya.mp3";
      //String output="/home/saicomputer/game.mp4";
      String output = new File(Environment.getExternalStorageDirectory(),"video.mp4").getAbsolutePath();
      Log.i("Test", "Let's set output to " + output);
      String cmd="ffmpeg -i "+ livestream +" -i "+ folderpth +" -acodec copy "+ output;
       Log.e("chck plzzzzz", "after "+ cmd);
      //String jaiho="ffmpeg -i image8.jpg -i file.m4a -acodec copy test.mp4";

      try{
       //Process p =
        Runtime.getRuntime().exec(cmd);

      }
      catch(Exception e)
      {
          System.out.println("exception"+e);
      }