
Recherche avancée
Autres articles (108)
-
Récupération d’informations sur le site maître à l’installation d’une instance
26 novembre 2010, parUtilité
Sur le site principal, une instance de mutualisation est définie par plusieurs choses : Les données dans la table spip_mutus ; Son logo ; Son auteur principal (id_admin dans la table spip_mutus correspondant à un id_auteur de la table spip_auteurs)qui sera le seul à pouvoir créer définitivement l’instance de mutualisation ;
Il peut donc être tout à fait judicieux de vouloir récupérer certaines de ces informations afin de compléter l’installation d’une instance pour, par exemple : récupérer le (...) -
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 -
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...)
Sur d’autres sites (11815)
-
Revision f551c2d1c0 : Fix width/height switch-up in U/V SB quantize code. Change-Id : I697514efd6024e1
13 avril 2013, par Ronald S. BultjeChanged Paths : Modify /vp9/encoder/vp9_quantize.c Fix width/height switch-up in U/V SB quantize code. Change-Id : I697514efd6024e1b4153bbde58ae5e323b030981
-
Revision dc0f457c94 : Using get_plane_block_{width, height} instead of custom code. Change-Id : I453ed
25 juin 2013, par Dmitry KovalevChanged Paths :
Modify /vp9/encoder/vp9_rdopt.c
Using get_plane_block_width, height instead of custom code.Change-Id : I453ed11b965e857a14c18ea5c0f4a0a48e7dc0d9
-
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 !