
Recherche avancée
Autres articles (42)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
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
Sur d’autres sites (7072)
-
qt-faststart : add validation on ftyp atom size
13 juin 2018, par erankor -
avformat/matroskaenc : Fix edge case of writing Cues at the beginning
28 décembre 2019, par Andreas Rheinhardtavformat/matroskaenc : Fix edge case of writing Cues at the beginning
The Matroska muxer has the ability to write the Cues (the index) at the
beginning of the file (in front of the Cluster) : The user inputs the
amount of space that should be reserved at the beginning of the file and
if this is sufficient, the Cues will be written there and the part of the
reserved space not used up by the Cues will be filled with a "Void"
element.There is just one problem with this : One can not fill a single byte this
way, because said Void element is minimally two bytes long (one byte ID,
one byte length field). Up until now, if one reserved one byte more than
needed, one would run into an assert when writing the Void element.There are two solutions for this : Error out if it happens. Or adjust the
length field of the Cues in order to ensure that the above situation
can't happen (i.e. write the length on one byte more than necessary).
The first solution is very unsatisfactory, as enough space has been
reserved. Therefore this commit implements the second solution.Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>
-
Why am I getting only one image in the video made from sequence of images ?
30 mars 2018, par maximusdookuI have 100 images of this naming :
0.png, 1.png, 12.png, 35.png, etc.
ffmpeg -f image2 -r 1 -i %d.png -vcodec mpeg4 -y movie.mp4
All I want to have is a smooth animation with probably around 20 images in 1 second.
How can I do this ? Right now, only the first image is shown in the video.