Recherche avancée

Médias (1)

Mot : - Tags -/iphone

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 (11113)

  • FFMPEG overlay two video and add text

    20 février 2019, par S.J. Lin

    I want to overlay two videos and add time on the video.

    When I merge two videos with

    ffmpeg \
    -y \
    -i video1.mp4 -i video2.mp4 \
    -filter_complex " \
       [0:v]setpts=PTS-STARTPTS,scale=720x720[top]; \
       [1:v]setpts=PTS-STARTPTS,scale=240x240[bottom]; \
       [top][bottom]overlay=x=10:y=10:eof_action=pass" \
    -acodec aac -vcodec libx264 merge.mp4

    And it works.

    But when I try to add text on it with

    ffmpeg \
    -y \
    -i video1.mp4 -i video2.mp4 \
    -filter_complex " \
       [0:v]setpts=PTS-STARTPTS,scale=720x720[top]; \
       [1:v]setpts=PTS-STARTPTS,scale=240x240[bottom]; \
       [top][bottom]overlay=x=10:y=10:eof_action=pass; \
       drawtext=fontfile=Arial.ttf:text=yo" \
    -acodec aac -vcodec libx264 merge.mp4

    I got error

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

    How should I modify my command

  • Why does my ffmpeg drawtext filter not output any metadata text ?

    1er juin 2023, par Andrew Sinclair

    Using the ffmpeg drawtext filter and looking at the documentation here : https://ffmpeg.org/ffmpeg-filters.html#drawtext-1
I was hoping to be able to extract some of the metadata from a frame and write it onto an image as the docs indicate I can use anything available in ffprobe -show_frames

    


    However I get no output using either of the following commands :

    


    ffmpeg -i  -vf "drawtext=fontfile=/Library/Fonts/Arial.ttf:text='%{pict_type} %{metadata\:media_type} %{n} %{pts}' : fontcolor=white: fontsize=50: x=(w-text_w)/2:y=(h-text_h)/2: box=1: boxcolor=black@0.2" -qscale:v 2 -t 2 -f image2 tmp/test/%04d.jpg


    


    ffmpeg -i  -vf "drawtext=fontfile=/Library/Fonts/Arial.ttf:text='%{pict_type} %{metadata\\:media_type} %{n} %{pts}' : fontcolor=white: fontsize=50: x=(w-text_w)/2:y=(h-text_h)/2: box=1: boxcolor=black@0.2" -qscale:v 2 -t 2 -f image2 tmp/test/%04d.jpg


    


    Using GNU bash, version 5.1.16(1)-release (x86_64-apple-darwin20.6.0)

    


    Any ideas ?

    


    Tried the above commands but just got blank output for the metadata text

    


  • MAINTAINERS : Add ubitux for text subtitles

    13 juillet 2014, par Michael Niedermayer
    MAINTAINERS : Add ubitux for text subtitles
    

    ubitux maintains them. It seems it was forgotten to update MAINTAINERs though

    See : Re : [FFmpeg-devel] [PATCH] MAINTAINERS : add Subtitle maintainer
    Message-ID : <20140713120546.GC26262@leki>

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] MAINTAINERS