Recherche avancée

Médias (39)

Mot : - Tags -/audio

Autres articles (84)

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

  • Why does FFmpeg not recognize this HEX color ?

    13 mai 2021, par John Matley

    I have a simple FFmpeg command (run from BAT file) which will overlay 2 bars of color onto a background image. The first color (FF0000) works great, but the second (212121) outputs a grey bar and not the HEX color I specified. Here's what I have so far :

    


    ffmpeg-y -i background.png -f lavfi -i color=ff0000:size=1280x720,format=rgba -f lavfi -i color=212121:size=1280x720,format=rgba -filter_complex "[1:v]rotate=-30*PI/180:c=none:ow=rotw(iw):oh=roth(ih)[box];[0:v][box]overlay=500:200[corner];[corner][2:v]overlay=0:600[output]" -map "[output]" -frames:v 1 output.png


    


    Any ideas ?

    


  • FFMPEG drawbox filter. Hex color result not matching input values

    31 juillet 2018, par Leon Digz

    I’m trying to create a border using the drawbox filter using a specific HEX color input, however the result I am getting does not match the value I set.

    Consider the following code which produces a 600x600 swatch ;

    ffmpeg -i 0.jpg -vf drawbox=x=0:y=0:w=600:h=600:color=#E4E8F3@1:t=fill _border.png

    E4E8F3 is supposed to translate to RGB 228,232,243

    When I run the above code, however, and re-import into photoshop the actual color, is "sort of close", but not close enough.

    The color I end up getting is ;

    Hex d2d7df, which is RGB 210,215,223

    Any ideas why I’m not getting the result I expect ?

  • Convert color to ffmpeg compatible format

    3 octobre 2015, par Akshay Khetrapal

    I am using ffmpeg pad filter to create a transparent padding around a video. According to FFmpeg Utilities page the color can be described using the format [0x|#]RRGGBB[AA]
    However, I’ve tried all possible options, like 0x00000000 etc. but I’ve never been able to generate a transparent background.

    How can I convert color to the FFmpeg compatible format I mentioned above ?