Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (105)

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

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

Sur d’autres sites (13929)

  • Removed a duplicate note caused by the removal of ZC.Client

    10 juin 2013, par JamesMGreene
    Removed a duplicate note caused by the removal of ZC.Client
  • Refactored @-options handling to save bytes.

    11 juin 2013, par blueimp
    Refactored @-options handling to save bytes.
    

    If an option is set to @, the global option of the same name as the key
    will be used, e.g. :
    acceptFileTypes : '@', // acceptFileTypes

    If the options set contains a property prefix, the global options key
    will be the prefix plus the option key, concatenated in camel-case
    spelling, e.g. :
    prefix : 'loadImage',
    acceptFileTypes : '@', // loadImageAcceptFileTypes

    If the prefix is set to true, the action of the options set will be
    used as key.

  • Using ffmpeg to add text/ticker to live video [migrated]

    8 juin 2013, par user763410

    I am able to add text to a video on my hard disk, before I braodcast it...by
    using the command.

    ffmpeg -y -i IMG_0696.MOV -acodec libmp3lame -vcodec msmpeg4 \
    -b:a 192k -b:v 1000k -ar 44100 \
    -vf "drawtext=text=string1 string2 string3 string4 string5 string6 string7 :expansion=normal:fontfile=/Windows/Fonts/cambriai.ttf: y=0:x=h-(2*lh)-n: fontcolor=white: fontsize=40: box=1: boxcolor=0x00000000@1" \
    -an IMG_0696.avi

    Now, I want to add different texts at various time instances. It should be read
    from a file which has the formatthe format :
    For example

    00:00:10 : google
    00:00:20 : yahoo
    00:00:30 : msft
    .
    .
    .
    00:00:60 : amzn
    .
    .
    .
    00:05:30 : java
    

    Is there a way to make ffmpeg read the file and add text at specified times ?
    Eventually, I would like to add live ticker symbol to a video before
    broadcasting it.