
Recherche avancée
Médias (1)
-
Somos millones 1
21 juillet 2014, par
Mis à jour : Juin 2015
Langue : français
Type : Video
Autres articles (51)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)
Sur d’autres sites (11470)
-
Fix issue with line height calculation when using older versions of jQuery
19 février 2014, par brandonaaronFix issue with line height calculation when using older versions of jQuery
-
FFMPEG SET ZxY width and height thumbnail while keeping aspect ratio with padding
15 octobre 2014, par user3810748Ive been looking around stack overflow for code on how to make thumbnails using ffmpeg.
But the two variations I find are either with -s 100x100 with a set frame - which ends in distorted thumbnails ; or the use of -vf 100 :-1, which only appropriately scales one side of the image - a problem for me since all thumbnails have to be of equal size ! is there a way to get the best of both worlds ?
a set height/width with a constant ratio ? Like line it with black boxes or something ? -
FFMPEG height not divisible by 2 (1912x913)
24 août 2022, par user10838752I want to convert a set of images into a .mp4 file, with the user specified speed and aspect ratio. For which I used this command


ffmpeg -i %d.png -filter:v "setpts=2*PTS" -aspect "16:9" -pix_fmt yuv420p -y /abc.mp4


Here 2 is the speed and 16:9 is the aspect ratio (both selected by user). It can vary based on user selection.


This command actually worked, but at times the conversion is failing due to height not divisible by 2 (1912x913) error.


I searched in couple of forums and found that adding -vf "pad=ceil(iw/2)*2:ceil(ih/2)*2" would resolve this issue. It actually did but the speed of the video file is not 2x but it is very fast. Not sure what I am missing. Can someone help me with this ?


Thanks in advance.