Recherche avancée

Médias (33)

Mot : - Tags -/creative commons

Autres articles (102)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

Sur d’autres sites (10346)

  • How can I hide a text on udp video streaming ?

    2 avril 2016, par c0rnw19

    enter image description hereI would like to hide a specific text on my udp video stream coming from encoder,

    I found a little solution OCR with Tesseract and emgu, but it use very high cpu ressource..

    Do you know another solution ? with ffmpeg ?

    thanks !

  • How to overlay multiple items (image and text) on a video in ffmpeg using filter_complex ? [duplicate]

    12 août 2020, par Kred

    This is my command :

    


    ffmpeg -i video.mp4 -i icons1.png  -filter_complex "overlay=(main_w-overlay_w)/2:(main_h-overlay_h)/2; drawtext=text='This is a test': fontcolor=white: fontsize=48: x=(w-text_w-250): y=(h-text_h-10)"  -codec:a copy -t 00:00:30 res.mp4


    


    The result is :

    


    Cannot find a matching stream for unlabeled input pad 0 on filter Parsed_drawtext_1


    


    I even tried to label them as [0] (image) and [1] (text, which I want to align on bottom-left), but the video only shows the image.

    


  • How to use the function expr in drawtext ffmpeg to add a text to video ?

    18 décembre 2013, par nhanpt

    I'm try to add a text to my video using FFmpeg.
    Sources : http://www.ffmpeg.org/ffmpeg-all.html#drawtext-1

    ffmpeg -i 1385363109.avi -vf "drawtext=fontfile=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans.ttf : text = %{localtime}: \x=(w-tw)/2: y=h-(2*lh): fontcolor=white: box=1: boxcolor=0x00000000@1" -an -y out11.avi

    I am trying to figure out how to add a timestamp in a formatable manner (specifically, I'd like to show mm:ss). I think this should be possible using a command like

    Code : Select all
    ffmpeg -i input.avi -vf "drawtext=fontfile=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf:expansion=normal:text='%expr=floor(t/60)~:%expr=floor(t)' : fontcolor=white " output.avi

    But I just get a lot of

    Code : Select all
    [Parsed_drawtext_0 @ 0x1a68a80] %expr=floor(t/60) is not known

    and no text is displayed.

    If I try

    Code : Select all
    ffmpeg -i input.avi -vf "drawtext=fontfile=/usr/share/fonts/truetype/ttf-dejavu/DejaVuSans-Bold.ttf:expansion=normal:text='%expr' : fontcolor=white " output.avi

    I get instead

    Code : Select all
    [Parsed_drawtext_0 @ 0x2d22be0] %expr requires at least 1 arguments

    so the version of drawtext I have definitely recognizes the expr function, but I can't figure out the syntax for giving it an argument. Does anyone know what the synatax is for the expr (or e) function ?

    Alternately, if there is another way to display the timecode as mm:ss that would be great too. I know that using the 'timecode' argument of drawtext you can get hh:mm:ss:ff, or using text='%pts' gives me decimal seconds to the microsecond, but I am sure that my advisor (who is very picky) will not accept either of these. Thanks in advance for any assistance !