
Recherche avancée
Autres articles (70)
-
Configurer la prise en compte des langues
15 novembre 2010, parAccéder à la configuration et ajouter des langues prises en compte
Afin de configurer la prise en compte de nouvelles langues, il est nécessaire de se rendre dans la partie "Administrer" du site.
De là, dans le menu de navigation, vous pouvez accéder à une partie "Gestion des langues" permettant d’activer la prise en compte de nouvelles langues.
Chaque nouvelle langue ajoutée reste désactivable tant qu’aucun objet n’est créé dans cette langue. Dans ce cas, elle devient grisée dans la configuration et (...) -
Les formats acceptés
28 janvier 2010, parLes commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
ffmpeg -codecs ffmpeg -formats
Les format videos acceptés en entrée
Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
Les formats vidéos de sortie possibles
Dans un premier temps on (...) -
Le profil des utilisateurs
12 avril 2011, parChaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)
Sur d’autres sites (7790)
-
Change White to Black in a GIF or crop GIF into a circle with Python
28 juin 2022, par tclecknerI have a GIF that I am trying to change all the white pixels to black. Not sure where to start.


Alternatively the GIF could be cropped to just the circle graphic on the left side of the GIF. I have used ffmpeg-python to crop the GIF down to a square around the circle but have yet to be able to crop it to a circle.

ffmpeg.crop(stream, 46,117,390,390)

Any insight is appreciated.

-
ffmpeg hstack png and replace transparent color with white color
21 juin 2022, par lucky1928Below command works fine to stack two png file with alpha channel left and right, The output png file will keep the alpha channel as well.


ffmpeg -i a.png -i b.png -filter_complex hstack=inputs=2 output.png



I wish replace alpha channel with white color (no need alpha channel), which parameter should I use ?


-
Add white noise to audio stream at specific time stamp for specific duration using FFMPEG
25 mai 2022, par cpronI have a video.mov file of 1 minute. What I want is to make the volume of the current audio stream to 0 for a specific duration and add noise at that specific timestamp.


ffmpeg -y -i video.mov -filter_complex volume=enable='between(t,15,20)':volume=0[main];anoisesrc=d=5:c=pink:r=44100:a=0.5[noise];[main][noise]amix=inputs=2



Thank you in advance.