Recherche avancée

Médias (21)

Mot : - Tags -/Nine Inch Nails

Autres articles (101)

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

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

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

  • avcodec/mpegvideo_dec, h264_slice : Return proper error codes

    5 avril 2024, par Andreas Rheinhardt
    avcodec/mpegvideo_dec, h264_slice : Return proper error codes
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/h264_slice.c
    • [DH] libavcodec/mpegvideo_dec.c
  • avcodec/mpeg12enc, speedhqenc : Optimize writing escape codes

    19 mars, par Andreas Rheinhardt
    avcodec/mpeg12enc, speedhqenc : Optimize writing escape codes
    

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpeg12enc.c
    • [DH] libavcodec/speedhqenc.c
  • ffmpeg drawtext RGB color codes

    19 janvier 2018, par Manish Jha

    I have an ffmpeg command which overlays an image and some text on a video where arguments are :

    -i "C:\exports\blue.mp4"
    -i "D:\Manish\Videos\logo.png"
    -filter_complex
    "[0:v]drawtext=fontfile='C\:\\Windows\\Fonts\\arial.ttf':
     text='falana dhimaka':
     fontcolor=AntiqueWhite:
     fontsize=20:x=1000:y=10[text];
     [text][1:v]overlay=140:5[filtered]" -map "[filtered]" -map 0:a? -codec:a copy
     -preset ultrafast -ac 2 "C:\exports\blue_wm.mp4"

    This works well, but I want to be able to supply RGB Hex instead of AntiqueWhite. Any help is appreciated.