Recherche avancée

Médias (0)

Mot : - Tags -/utilisateurs

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

Autres articles (90)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP en mode privé (Intranet)

    17 septembre 2013, par

    À partir de la version 0.3, un canal de MediaSPIP peut devenir privé, bloqué à toute personne non identifiée grâce au plugin "Intranet/extranet".
    Le plugin Intranet/extranet, lorsqu’il est activé, permet de bloquer l’accès au canal à tout visiteur non identifié, l’empêchant d’accéder au contenu en le redirigeant systématiquement vers le formulaire d’identification.
    Ce système peut être particulièrement utile pour certaines utilisations comme : Atelier de travail avec des enfants dont le contenu ne doit pas (...)

Sur d’autres sites (16014)

  • How To combining multiple filters in working ffmpeg code

    23 mai 2019, par skoo

    For a project I’m using FFmpeg to edit a short video. At the moment I’m applying four different lines to accomplice what is want.

    1:slow mo > input.mp4 - output1.mp4

    2:overlay > output1.mp4 - output2.mp4

    3:fade out to black > output2.mp4 - output3.mp4

    4:add image (company logo) > output3.mp4 - output.mp4

    1: ffmpeg -i input.mp4 -filter_complex "[0:v]trim=0:1.8,setpts=PTS-STARTPTS[v1]; [0:v]trim=1.8:3,setpts=PTS-STARTPTS[v2]; [0:v]trim=start=3,setpts=PTS-STARTPTS[v3]; [v2]setpts=PTS/0.22[slowv]; [v1][slowv][v3]concat=n=3:v=1:a=0[out]" -map "[out]" -c:v libx264 -preset ultrafast output.mp4

    2: ffmpeg -i output.mp4 -i overlay.png -filter_complex "[0:v][1:v]overlay=38:950" -codec:a copy output1.mp4

    3: ffmpeg -i output1.mp4 -vf "fade=type=out:duration=0.5:start_time=8.5" -c:a copy output2.mp4

    4: ffmpeg -y -i output2.mp4 -i output1.avi -filter_complex "[0:v:0][1:v:0]concat=n=2:v=1[outv]" -map "[outv]" output.mp4

    My Question : How can I combine these four separate lines to one FFmpeg code.

  • Passing FFMpeg Options into FrameGrabber Has No Effect At All

    29 janvier 2019, par peter bence

    I’m using FFMpegFrameGrabber on android to consume an rtmp live stream, that streams at 30fps, i tried to set the grabber frame rate using setFrameRate(4) and setOption("framerate","4"), in order to resolve the lag, but neither worked. I also passed a set of options into the grabber such as ("fflags","nobuffer") that seems to be working for others, but non has an effect too. I

       grabber = FFmpegFrameGrabber.createDefault(this.listener.getVideoUrlOrPath());

       grabber.setTimeout(Math.abs((int) GlobalHandler.configMnger.getConnectionTimeout() / 1000));
       grabber.setOption("fflags", "nobuffer");
       grabber.setOption("nobuffer", "1");
       grabber.setOption("max_delay", "0");
       grabber.setOption("hwaccel", "auto");
       grabber.setOption("vsync", "0");
       grabber.setOption("r", "4");
       grabber.setOption("preset", "ultrafast");
       grabber.setOption("tune", "zerolatency");
       grabber.setOption("analyzeduration", "0");
       grabber.setOption("fflags", "flush_packets");
       grabber.setOption("fflags", "nofillin");
       grabber.setOption("fflags", "noparse");
       grabber.setOption("flags", "low_delay");
       grabber.setOption("framedrop", "1");
       grabber.setOption("fflags", "discardcorrupt");
       grabber.setOption("framerate", "4");
       grabber.setFrameRate(4);
       grabber.setVideoCodec(avcodec.AV_CODEC_ID_H264);


       grabber.start();

       Frame image;

       while((image=grabber.grabImage())!=null){
           ...
       }

    Please Note that remove all options gives identical results, where the only working option i have here is timout that is set using the setTimeout function above.

    Any help please ?. Thanks !!

  • How to make doppler effect on audio with ffmpeg [duplicate]

    3 janvier 2019, par Adam Estel

    This question already has an answer here :

    How can i make the doppler effect on audio with ffmpeg.I mean : Sound run from left to right and opposite, just like this video :
    https://www.youtube.com/watch?v=j35K4QC_9bM
    I research ffmpeg for a while but I can’t firgure the audio filter i can start with
    Thank you for helping me
    Have a nice day.