
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (75)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, 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 (...) -
Creating farms of unique websites
13 avril 2011, parMediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)
Sur d’autres sites (10801)
-
Revision 15665 : on intègre width et height dans le tag img des puces.
3 mai 2010, par denisb@… — Logon intègre width et height dans le tag img des puces.
-
Revision 15666 : on intègre width et height dans le tag img des puces.
3 mai 2010, par denisb@… — Logon intègre width et height dans le tag img des puces.
-
How to fix height-width problem with ffmpeg when producing a video from a bunch of images ?
26 juillet 2022, par Pratik MullickI am using
ffmpeg
to produce a video from a set of .png images. All the images have :width = 4251 pixels
,height = 2834 pixels
, which I can not change. When I use the following code :

ffmpeg -start_number 1 -r:v 40 -i "plot_%01d.png" -codec:v libx264 -preset veryslow -pix_fmt yuv422p -crf 28 -an "video.mp4" -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2"



it yields an error :.


[libx264 @ 0x5619ad3ba600] width not divisible by 2 (4251x2834)
Error initializing output stream 0:0 -- Error while opening encoder for output stream #0:0 - maybe incorrect parameters such as bit_rate, rate, width or height
Conversion failed!



How to fix this ? Thanks for your help !