Recherche avancée

Médias (2)

Mot : - Tags -/map

Autres articles (81)

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

  • Le profil des utilisateurs

    12 avril 2011, par

    Chaque utilisateur dispose d’une page de profil lui permettant de modifier ses informations personnelle. Dans le menu de haut de page par défaut, un élément de menu est automatiquement créé à l’initialisation de MediaSPIP, visible uniquement si le visiteur est identifié sur le site.
    L’utilisateur a accès à la modification de profil depuis sa page auteur, un lien dans la navigation "Modifier votre profil" est (...)

Sur d’autres sites (7146)

  • avutil/hwcontext_videotoolbox : fix color primaries check

    4 juin, par Jun Zhao
    avutil/hwcontext_videotoolbox : fix color primaries check
    

    Fix incorrect enum value used in color primaries check by replacing
    AVCOL_SPC_UNSPECIFIED with AVCOL_PRI_UNSPECIFIED.

    Signed-off-by : Jun Zhao <barryjzhao@tencent.com>

    • [DH] libavutil/hwcontext_videotoolbox.c
  • Color Correcting MP4/Webm videos

    2 octobre 2014, par sottenad

    I have a large video that features some animations too complex/long for other methods of embedding (gif, png sequence, etc.) and we are running into an issue with the colors in the video. Essentially we are including the background of the web page as part of the video in order to prevent the appearance of any edges on the video when it plays. We are trying to get the gradient background on the video to match that on the webpage, but the colors are WAY off.

    Are there any recommendations on how to color correct an MP4 video ? Or any html5-safe ways to do video with an alpha channel ?

  • ffmpeg : Remove an exact hex color ?

    26 octobre 2022, par Andrew Young

    i'm editing .gifs and it is a MUST that we remove a specific hex encoding from the gif and place the background behind it.

    &#xA;

    This is all working fine, the problem is that 'colorkey' arg at its lowest default value (0.01) removes 'similar colors' to your input, not the exact value. So it's screwing up the entire gif by removing colors we don't need removed !

    &#xA;

    Also tried chromakey, which does claim to be exact in the docs. Just doesn't work for gifs apparently, we're getting black pixels everywhere.

    &#xA;

    This should be an easy problem, so how do we remove an exact hex color on a .gif ? Code below, although it doubt it helps. Thanks.

    &#xA;

    -i background.png -i gifInfo.gif -i foreground.png -filter_complex &#x27;[0:v]split [a][b];[a] palettegen=stats_mode=full[p];[b][p] paletteuse=new=1[pbgout];[pbgout]scale=w=350:h=-1,pad=1080:1080:x=350:y=470[bgout];[1:v]colorkey=0x080806:[ckout];[bgout][ckout]overlay[olout];[olout][2:v]overlay[oloutb];[oloutb]split[s0][s1];[s0]palettegen=stats_mode=full[p];[s1][p]paletteuse=dither=none&#x27; -y testingGif.gif&#xA;

    &#xA;