
Recherche avancée
Médias (91)
-
DJ Z-trip - Victory Lap : The Obama Mix Pt. 2
15 septembre 2011
Mis à jour : Avril 2013
Langue : English
Type : Audio
-
Matmos - Action at a Distance
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
DJ Dolores - Oslodum 2004 (includes (cc) sample of “Oslodum” by Gilberto Gil)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Danger Mouse & Jemini - What U Sittin’ On ? (starring Cee Lo and Tha Alkaholiks)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Cornelius - Wataridori 2
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
The Rapture - Sister Saviour (Blackstrobe Remix)
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
Autres articles (73)
-
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 -
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 is the first MediaSPIP stable release.
Its official release date is June 21, 2013 and is announced here.
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)
Sur d’autres sites (15822)
-
aarch64 : hevc : Reorder epel_hv functions to prepare for templating
25 mars 2024, par Martin Storsjö -
FFmpeg GIF dump & video slideshow errors
27 avril 2017, par Techie AndroidI’m running Windows 10 and have the latest static 64bit nightly FFmpeg version. Here are my scripts, I’ve been trying to get them fixed but I can’t seem to get either to work.
I have a GIF file named gif.gif that I need the frames dumped out of and named in this order : img000.png img001.png img002.png and so forth.
ffmpeg -i "gif.gif" "%img%%03d.png"
It’s error message is :
[NULL @ 052857c0] Unable to find a suitable output format for ’C :\Users\username’
C :\Users\username : Invalid argumentThis is where I need the individual frames to be encoded into a video file and get it to duplicate the frames necessary to make it a slideshow. It should copy each frame 150 times so that they will last for 5s each at 30fps.
The filename is video maker.batffmpeg -i %img%%03d.png -framerate 1/5 -c:v libx264 -r 30 -pix_fmt yuv420p "output.mp4"
It’s error message is :
imgC :\myfilesdirectoryhere\video maker.bat3d.png : Protocol not found
-
libavutil : Use an intermediate variable in AV_COPY*U
28 juillet 2016, par Martin Storsjölibavutil : Use an intermediate variable in AV_COPY*U
If AV_RN and AV_WN are macros with multiple individual reads and
writes, the previous version of the AV_COPYU macro would fail if
the reads and writes overlap.This should not be any less efficient in any case, given a
sensibly optimizing compiler.Signed-off-by : Martin Storsjö <martin@martin.st>