
Recherche avancée
Autres articles (66)
-
Les autorisations surchargées par les plugins
27 avril 2010, parMediaspip core
autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs -
De l’upload à la vidéo finale [version standalone]
31 janvier 2010, parLe chemin d’un document audio ou vidéo dans SPIPMotion est divisé en trois étapes distinctes.
Upload et récupération d’informations de la vidéo source
Dans un premier temps, il est nécessaire de créer un article SPIP et de lui joindre le document vidéo "source".
Au moment où ce document est joint à l’article, deux actions supplémentaires au comportement normal sont exécutées : La récupération des informations techniques des flux audio et video du fichier ; La génération d’une vignette : extraction d’une (...) -
Librairies et binaires spécifiques au traitement vidéo et sonore
31 janvier 2010, parLes logiciels et librairies suivantes sont utilisées par SPIPmotion d’une manière ou d’une autre.
Binaires obligatoires FFMpeg : encodeur principal, permet de transcoder presque tous les types de fichiers vidéo et sonores dans les formats lisibles sur Internet. CF ce tutoriel pour son installation ; Oggz-tools : outils d’inspection de fichiers ogg ; Mediainfo : récupération d’informations depuis la plupart des formats vidéos et sonores ;
Binaires complémentaires et facultatifs flvtool2 : (...)
Sur d’autres sites (9861)
-
Passing FFMpeg Options into FrameGrabber Has No Effect At All
29 janvier 2019, par peter benceI’m using
FFMpegFrameGrabber
on android to consume an rtmp live stream, that streams at 30fps, i tried to set the grabber frame rate usingsetFrameRate(4)
andsetOption("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. Igrabber = 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 thesetTimeout
function above.Any help please ?. Thanks !!
-
How to make doppler effect on audio with ffmpeg [duplicate]
3 janvier 2019, par Adam EstelThis 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. -
How to add Text with transition effect to video with ffmpeg ? [duplicate]
2 octobre 2018, par Bhavik RathodThis question already has an answer here :
-
ffmpeg moving text drawtext
1 answer
I want to add text in video like subtitles, i know how to add text to video, now i want to add text with transition effects like presentation. How can i do that with using FFMPEG PHP. Is there any other possibilities to achieve that ? Thanks in advance
Below is example of effect i wan’t to achieve
-
ffmpeg moving text drawtext