
Recherche avancée
Autres articles (42)
-
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 -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains 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 2013Puis-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 (5941)
-
How to make a thread with libavcodec library ?
12 janvier 2014, par Blue SkyHow can I make a thread using libavcodec (ffmpeg library) ? I want to call
avformat_open_input
within a separate thread to check for an available video stream at a specific UDP address. The reason for this is thatavformat_open_input
checks the UDP address continuously in a loop until a video data comes available, and during this period the program looks like halted. Any idea ? Thanks ! -
Is there a way to combine identical frames when outputting animated gif ?
4 juillet 2023, par XylemFlowSome of the animations I export to animated gif with FFmpeg have long pauses where the frames are identical. Is there a way for FFmpeg to detect this and encode them as a single frame with a longer pause period ? In other words, combine identical frames. I currently use


-vf palettegen=stats_mode=full
-f gif -lavfi paletteuse=diff_mode=rectangle:dither=none -loop -1



The file sizes are quite large as a result. Optimizing them with ezgif makes them a lot smaller by combining the frames.


-
How to convert images to a video by the time they have been taken/saved and not by name ?
26 avril 2019, par Xester MeniaI have a Livestream that takes pictures every one or two seconds. Then I have a folder in which the pictures are being saved.
Usually I would just simply takeffmpeg -start_number -i IMG_%d.JPG video.webm
(I need the end format in .webm). I want to use the saved pictures to form a time-lapse to put up next to the stream. So people can see the last 24h/ 7d and 90d. So I wondered if I could code that all the pics of that time period are used and only them.
I later want it to happen automatic, so i dont have to write the code new every day.Thanks for your help