Recherche avancée

Médias (91)

Autres articles (62)

  • 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 (10668)

  • Revision 18078 : Warn, instead of asserting, when a stream has nothing to index. This ...

    4 septembre 2011, par oggk — Log

    Warn, instead of asserting, when a stream has nothing to index.
    This can happen when encoding part of a video with subtitles,
    if no subtitles are present in the encoded segment.

  • Revision ed100c0b00 : Fix an ioc issue in super_block_uvrd This commit fixes an ioc issue that will h

    16 octobre 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/encoder/vp9_rdopt.c



    Fix an ioc issue in super_block_uvrd

    This commit fixes an ioc issue that will happen when the cumulative
    variables are not in effective use. The fix discards these
    redundant additions.

    Change-Id : Idbac5bfb989c0cedc5f8a323effce938519b2457

  • 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.