Recherche avancée

Médias (91)

Autres articles (49)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette 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, par

    The 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 2011

    Vous 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 Desai

    I 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 singh

    Hi 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 :

    &#xA;&#xA;

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

    &#xA;&#xA;

    enter image description here&#xA;It gererate right thumbnails tile, but timecodes is wrong. How to solve this issue ?

    &#xA;