
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (50)
-
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 (10230)
-
How to do text alignment on box in ffmpeg ?
28 juin 2022, par Dinesh Reddy

ffmpeg -y -i skate.mp4 -filter_complex "drawbox=x=645.7538994800693:y=449.2201039861352:w=700:h=169:color=red@1:t=fill,drawtext=enable='between(t,0,3)':fontfile='344c235b-9bf7-4b13-ad99-ab230b473577.ttf':text='Hello world':fontsize=150:line_spacing=3:x=645.7538994800693:y=449.2201039861352:fontcolor=#000000:borderw=0:bordercolor=#ffffff,rotate=a=0*PI/180:ow=rotw(0*PI/180):oh=roth(0*PI/180):c=black@0" output.mp4


I draw the box using drawbox filter and written the text also but i need to do text alignment in the box like center, right and left. Can you help in this anyone.


Thanks in advance


-
ffmpeg switch to "ping pong" the resulting frames [duplicate]
18 février 2021, par Some1ElseI am using ffmpeg to convert a series of bitmaps into an AVI file, using this syntax


ffmpeg.exe -framerate 60 -start_number 1 -i BMP%05d.BMP -dst_range 1 -color_range 2 -c:v libxvid -vtag xvid -q:v 1 -y -vf format=yuv420p output.AVI



which works fine.


But now I want to "ping pong" the output. ie create an AVI twice as long, but the second half is the same frames in reverse. So the movie plays forward, then in reverse.


I don't see any options/switches for this in the documentation. Is it possible ?


Thanks for any tips.


-
Optimizing Painting video encoding in Android
26 octobre 2013, par coder000001I want to create live painting video as export feature for a painting application.
I can create a video with a series of images, with the use of a library ( FFMPEG or MediaCodec). But, this would require too much processing power to compare the images and encode the video.
While drawing, I know exactly which pixels are changed. So, I can save lot of processing if I can pass this info to FFMPEG, instead of having the FFMPEG figure this out from the images.
Is there away to efficiently encode the video for this purpose ?