Recherche avancée

Médias (1)

Mot : - Tags -/illustrator

Autres articles (97)

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

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (8583)

  • lavf/movenc : Use a dynamic buffer when writing the mfra box

    23 juin 2020, par Derek Buitenhuis
    lavf/movenc : Use a dynamic buffer when writing the mfra box
    

    When doing streamed output, with e.g. +dash, if the mfra box ended
    up being larger than the AVIOContext write buffer, the (unchecked)
    seeking back to update the box size would silently fail and produce
    an invalid mfra box.

    This is similar to how other boxes are written in fragmented mode.

    Signed-off-by : Derek Buitenhuis <derek.buitenhuis@gmail.com>

    • [DH] libavformat/movenc.c
  • drawbox around text with dynamic height in ffmpeg

    9 mars 2018, par Anuj TBE

    I’m working on a ffmpeg script to draw text over image/video.

    The text will be wrapped inside a box with full width and dynamic height.

    I have tried two approach to achieve this.

    1. using drawbox

    ffmpeg \
    -loop 1 -i /path_to_file/file.jpg \
    -t 5 -vf
    "scale=320:320,\
    drawbox=y=0\
    :color=#00FF29\
    :width=iw\
    :height=72\
    :t=max,\
    drawtext=text=TBE\
    :fontcolor=#F71DFF\
    :fontsize=82:x=(w-text_w)/2\
    :y=text_h/2"
    /path_to_file/new_file.mp4 -y

    Which renders following three examples with different value of fontsize

    ffmpeg drawbox example

    2. using box of drawtext

    ffmpeg -i in3.png -t 5 -vf drawtext=" \
    text='Stack Overflow': fontcolor=white: fontsize=54: box=1: boxcolor=black@0.5: \
    boxborderw=10: x=(w-text_w)/2: y=(h-text_h)/2" -codec:a copy output_new.mp4

    enter image description here

    Half of the requirement is being fullfiled by drawbox (full width box) and half using drawtext box (box height according to text).

    How can I achieve both (full box width with dynamic height according to height of text) in ffmpeg ?

  • avcodec/libdav1d : export Dynamic HDR10+ frame metadata

    3 mars 2023, par James Almer
    avcodec/libdav1d : export Dynamic HDR10+ frame metadata
    

    As defined in https://aomediacodec.github.io/av1-hdr10plus/

    Reviewed-by : Ronald S. Bultje <rsbultje@gmail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] libavcodec/libdav1d.c