
Recherche avancée
Autres articles (89)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
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 (...) -
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 (11613)
-
How make typing text effect with ffmpeg ?
23 mai 2017, par FatasHow i can make video with typing text effect with ffmpeg ?
I have something like that, but i need animated text :
ffmpeg -f lavfi \
-i color=c=white:s=1440x900 \
-vf drawtext="text='Some text here': fontcolor=black: fontsize=100: x=(w-text_w)/2: y=(h-text_h)/2" \
-pix_fmt yuv420p -t 30 out.mp4One idea is making bunch generated .png files and then merge, but i think there is better way ?
-
How to increase line-height of text using drawtext with FFMPEG ?
21 octobre 2020, par Romualdo Arrechea HernándezI'm using the current code to create a video with some text of several lines. When executed I'm receiving a video with the text joined vertically because of lacking space. How do I do to add line-height space ?



ffmpeg -i videoInput.mp4 \
 -vf drawtext="./font/Roboto/Roboto-Bold.ttf: \
 text='testing text \ntesting text \ntesting text':\
 fontcolor=yellow:\
 fontsize=36:\
 box=1:\
 boxcolor=black@0.5: \
 boxborderw=160:\
 x=(w-text_w)/2:\
 y=(h-text_h)/2"\
 -codec:a copy \
 videoOutput.mp4



-
avcodec/flac : Move decoder+parser stuff into a new header, flac_parse.h
28 août 2022, par Andreas Rheinhardtavcodec/flac : Move decoder+parser stuff into a new header, flac_parse.h
(The FLAC parser currently ignores the streaminfo block ;
therefore some of this is decoder-only. Given that the FLAC
parser should probably use the streaminfo block, this stuff
is moved to flac_parse.h.)Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>