Recherche avancée

Médias (91)

Autres articles (51)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (9263)

  • Video, and image files merge using FFMPEG in android

    26 janvier 2020, par Jatin Wadhavana

    I want to merge video and images in single video file like following with dynamic.

    For example :
    Video-1 + Image-1 (3 sec should be display) + Video-2 + Image-2 (3 sec should be display) ...

    So, video and image will be dynamic and different resolution.

    Thanks in Advance

  • Is it possible for me to put a mask over a transparent image with ffmpeg ?

    14 juin 2019, par Pedro Valle

    I’m trying to make an overlay with a mask over a transparent image with ffmpeg, but the background of the image that gets the mask turns black, is there any way to make this background remain transparent ?

    ffmpeg -i background.jpg -loop 1 -i image.png -loop 1 -i mask.png -filter_complex [0]setpts=PTS-STARTPTS,scale=720:720[background];[2]alphaextract,scale=640x320[mask];[1]scale=640x320[image];[image][mask]alphamerge[final_mask];[background][final_mask]overlay=100:100[final] -map [final] -t 00:00:05.000 -y result.mp4
    result

  • to create video from image sequence on android

    4 juin 2012, par preceptron

    I want to create video from image sequence (on android) by this code :

       opencv_core.IplImage image = cvLoadImage("/sdcard/mytest/testimage.jpg");
       FFmpegFrameRecorder recorder = new FFmpegFrameRecorder("/sdcard/mytest/test.3gp",256,256);
       try {
           recorder.setCodecID( CODEC_ID_H263);
           recorder.setFormat("3gp");
           recorder.setPixelFormat(  PIX_FMT_YUV420P);
           recorder.start();
           for (int i=0;i<10;i++)
             {
               recorder.record(image);
             }
           recorder.stop();
          }
       catch (Exception e){
           e.printStackTrace();
         }

    But instead of my image I have got green screen. What I have to change in my code ?

    And how I can add audio to my video ?