
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (99)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
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 (...) -
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 (7148)
-
How to use ffmpeg make a video from one still image with height from 0 to 100% animation
28 août 2021, par Xiang ChenI want use a still image to make a transparent webm video, this video needs to have the following style :


- 

- the image height auto increase from 0 to 100% in specific time.
- I don't want scroll effect , what i want is just like the image spread from top to bottom








Please help me , thanks a lot


-
Getting video dimension / resolution / width x height from ffmpeg
17 octobre 2023, par David542How would I get the height and width of a video from
ffmpeg
's information output. For example, with the following output :


$ ffmpeg -i video.mp4
...
Input #0, mov,mp4,m4a,3gp,3g2,mj2, from 'video.mp4':
 Metadata:
 major_brand : isom
 minor_version : 1
 compatible_brands: isomavc1
 creation_time : 2010-01-24 00:55:16
 Duration: 00:00:35.08, start: 0.000000, bitrate: 354 kb/s
 Stream #0.0(und): Video: h264 (High), yuv420p, 640x360 [PAR 1:1 DAR 16:9], 597 kb/s, 25 fps, 25 tbr, 25k tbn, 50 tbc
 Metadata:
 creation_time : 2010-01-24 00:55:16
 Stream #0.1(und): Audio: aac, 44100 Hz, stereo, s16, 109 kb/s
 Metadata:
 creation_time : 2010-01-24 00:55:17
At least one output file must be specified




How would I get
height = 640, width= 360
?

-
ffmpeg how to upscale video 2x but only if resulting size is smaller than 720 height ?
16 avril 2022, par tuquequeI want to upscale videos in ffmpeg to twice their size, but only if the resulting size is smaller than 720 height... so, for example :


A video of 256x144 will be upscaled 2x, resulting in 512x288


A video of 640x360 will be upscaled 2x, resulting in 1280x720


A video of 854x480 (or bigger sizes) won't be upscaled, because the resulting sizes would exceed the limit of 720 height.


So, is it possible to do something like that in ffmpeg with the "scale" filter ?