
Recherche avancée
Médias (91)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
-
Les Miserables
4 juin 2012, par
Mis à jour : Février 2013
Langue : English
Type : Texte
-
Ne pas afficher certaines informations : page d’accueil
23 novembre 2011, par
Mis à jour : Novembre 2011
Langue : français
Type : Image
-
The Great Big Beautiful Tomorrow
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Richard Stallman et la révolution du logiciel libre - Une biographie autorisée (version epub)
28 octobre 2011, par
Mis à jour : Octobre 2011
Langue : English
Type : Texte
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (49)
-
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. -
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (...)
Sur d’autres sites (9840)
-
Time Overlay on RTMP Video Streaming Using FFMPEG
7 août 2015, par Dipak D DesaiI have used following command line to stream video and overlay the time and date on video.
raspivid -t 0 -w $3 -h $4 -fps 15 -b 500000 -o - | ffmpeg -an -i - -r 15 -vf drawtext="fontfile=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf: text='%m/%d/%y \%T ':fontcolor=red@1.0: fontsize=15: x=20: y=170" -vcodec copy -tune zerolatency -b:v 200k -preset fast -crf 30 -maxrate 300k -bufsize 500k -f flv -metadata streamName=$2 $rtmpurl &
I am able to stream video using above command but not get time and date text overlay on video.
If any one have idea let me guide.
-
Need to set Multiple drawtext in same line one after the other. but unable to do so via FFMPEG command
9 septembre 2019, par balpreet singhHi Am trying to create a FFMPEG command for Text overlay on video that has partially text as bold. I am using the following command. but am unable to figure out how to pass the x position of 1st ending part.
ffmpeg -i b.mp4 -vf "drawtext=fontfile=arial.ttf:text='Title of this video is ':fontcolor=blue:fontsize=20,drawtext=fontfile=ariali.ttf:text='How to have a healthy Life':fontcolor=yellow:fontsize=20:x=**<width of="of" 1st="1st" text="text">**" -c:v libx264 -c:a copy -movflags +faststart output.mp4 -y
</width> -
How to generate tile with video thumbnails with right timecode
20 mai 2022, par Андрей ЛитвиненкоI'm using FFMPEG library for generating video thumbnails every 5 sec with time codes using following command :



ffmpeg \
-i 20051210-w50s.flv \
-y \
-frames 1 \
-vf " \
 select=not(mod(t\,5)), \
 scale=320:-1, \
 drawtext=fontfile=/usr/share/fonts/dejavu/DejaVuSans-Bold.ttf: \
 timecode='00\\:00\\:00\\:00': r=25: fontcolor=white: x=220: y=220: box=1: boxcolor=black@0.5, \
 tile=5x2" \
-vsync 0 \
out.jpg





It gererate right thumbnails tile, but timecodes is wrong. How to solve this issue ?