
Recherche avancée
Médias (91)
-
#3 The Safest Place
16 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#4 Emo Creates
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#2 Typewriter Dance
15 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
#1 The Wires
11 octobre 2011, par
Mis à jour : Février 2013
Langue : English
Type : Audio
-
ED-ME-5 1-DVD
11 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Audio
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (77)
-
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Possibilité de déploiement en ferme
12 avril 2011, parMediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)
Sur d’autres sites (12021)
-
How to merge video and photo with alpha channel in Python ?
28 septembre 2020, par Daniel KuninSo, i.e. I have 1 video with alpha channel (overlay) and I want to merge it with a .png or .jpg file


Does anyone know a tool/lib which can do that ? Maybe ffmpeg ?


I would be really happy if you shared an implementation of merging alpha channel video with image here


-
Can you crop a photo to fit a circle using ffmpeg ?
11 septembre 2021, par L04DB4L4NC3RI know that ffmpeg is very advanced and can be used to crop both photos and videos in order to rescale them. Bit mostly everything I've come across online uses the X and Y coordinates to crop a photo in ffmpeg. How can we use this to crop a photo in the form of a circle rather than a rectangle ?


-
How to make text the same scale in any sized photo with ffmpeg
28 août 2020, par pigeonburgerThis is what I'm doing right now :


ffmpeg -i cornoil.jpg -vf "drawtext=font='Impact': text='Test Text': fontcolor=white: borderw=3: fontsize-75: x=(w-tw)/2:y=h/12-th/2" output.jpg



I understand that in this case the text size would be 75 every time, so what I would like to do is make the text scale down if it is a smaller image (so it doesn't go out of the frame) or scale up if it is a larger image (so it doesn't look tiny)


Thanks for any help