
Recherche avancée
Médias (1)
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
Autres articles (88)
-
Taille des images et des logos définissables
9 février 2011, parDans beaucoup d’endroits du site, logos et images sont redimensionnées pour correspondre aux emplacements définis par les thèmes. L’ensemble des ces tailles pouvant changer d’un thème à un autre peuvent être définies directement dans le thème et éviter ainsi à l’utilisateur de devoir les configurer manuellement après avoir changé l’apparence de son site.
Ces tailles d’images sont également disponibles dans la configuration spécifique de MediaSPIP Core. La taille maximale du logo du site en pixels, on permet (...) -
Supporting all media types
13 avril 2011, parUnlike most software and media-sharing platforms, MediaSPIP aims to manage as many different media types as possible. The following are just a few examples from an ever-expanding list of supported formats : images : png, gif, jpg, bmp and more audio : MP3, Ogg, Wav and more video : AVI, MP4, OGV, mpg, mov, wmv and more text, code and other data : OpenOffice, Microsoft Office (Word, PowerPoint, Excel), web (html, CSS), LaTeX, Google Earth and (...)
-
Pas question de marché, de cloud etc...
10 avril 2011Le vocabulaire utilisé sur ce site essaie d’éviter toute référence à la mode qui fleurit allègrement
sur le web 2.0 et dans les entreprises qui en vivent.
Vous êtes donc invité à bannir l’utilisation des termes "Brand", "Cloud", "Marché" etc...
Notre motivation est avant tout de créer un outil simple, accessible à pour tout le monde, favorisant
le partage de créations sur Internet et permettant aux auteurs de garder une autonomie optimale.
Aucun "contrat Gold ou Premium" n’est donc prévu, aucun (...)
Sur d’autres sites (10626)
-
How to animate video png overlay size with ffmpeg ?
17 septembre 2021, par Nazarii KahaniakI have a png overlay over a video and I am trying to add zoom animation after 10 seconds of the video, so that image takes the whole video size. I have tried to use zoompan for that but I it resized image instantly without any animation. How to smoothly change overlay size with ffmpeg ?


inputs :


'-i', cameraVideoPath,
'-i', overlayPath,



command :


nullsrc=size=$cameraVideoSize [base]; 
[0:v] setpts=PTS-STARTPTS, scale=$cameraVideoSize [p1];
[1:v] scale=640:300,setsar=1/1,zoompan=z='if(gte(in,250),min(pzoom+0.005,10),1)':d=1:s=1920x900,trim=duration=1[overlay];
[base][p1] overlay=shortest=1 [v1];
[v1][overlay]overlay=0:(H-h)



-
How to animate video overlay pbg size with ffmpeg ?
17 septembre 2021, par Nazarii KahaniakI have a png overlay over a video and I am trying to add zoom animation after 10 seconds of the video, so that image takes the whole video size. I have tried to use zoompan for that but I it resized image instantly without any animation. How to smoothly change overlay size with ffmpeg ?


inputs :


'-i', cameraVideoPath,
'-i', overlayPath,



command :


nullsrc=size=$cameraVideoSize [base]; 
[0:v] setpts=PTS-STARTPTS, scale=$cameraVideoSize [p1];
[1:v] scale=640:300,setsar=1/1,zoompan=z='if(gte(in,250),min(pzoom+0.005,10),1)':d=1:s=1920x900,trim=duration=1[overlay];
[base][p1] overlay=shortest=1 [v1];
[v1][overlay]overlay=0:(H-h)



-
Adding or overlaying Gif on video in android
3 août 2017, par Umang KambojI am working on an application in android, its requirement is to overlay gif on a video. Please help me on this, it can use either ffmpeg or media
codec with OpenGL. Thanks in advance.