Recherche avancée

Médias (91)

Autres articles (52)

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

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

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

  • avcodec/jpegxl_parser : fix OOB read regression

    15 octobre 2023, par Leo Izen
    avcodec/jpegxl_parser : fix OOB read regression
    

    In f7ac3512f5b5cb8eb149f37300b43461d8e93af3 the size of the dynamically
    allocated buffer was shrunk, but it was made too small for very small
    alphabet sizes. This patch restores the size to prevent an OOB read.

    Reported-by : Cole Dilorenzo <coolkingcole@gmail.com>
    Signed-off-by : Leo Izen <leo.izen@gmail.com>

    • [DH] libavcodec/jpegxl_parser.c
  • ffmpeg how to copy one frame for certain duration

    19 août 2018, par user889030

    Am trying to add image Overlay to video it specific duration for specific time period for which i want that video frame to be copied for specific time so that video feels like stationary and image overlay have animated effect on that specific frame .

    ffmpeg -y -i small.mp4 -i google.png -filter_complex "overlay=enable='between=(t,1,4)':x=30+t*28:y=50"  output.mp4

    the above command insert google.png to video small.mp4 between 1 to 4 sec it x=30 and y =50 where x is added with t * 28 , which create 28 pixel shift it x-axis

    currently am using this command which works ok but the problem is i do no know how to copy the frame for certain duration so that image overlay have animation effect on it

  • 360 degree video of my OpenGL game

    23 août 2016, par woidler

    I want to make a 360 degree video of my OpenGL game.

    Concerning the rendering :
    Is it enough to render it in OpenGL with a specific projection matrix ?
    If yes, which one ?
    Or can I render it into a cube map, and then encode it ?
    (Which will require much more rendering power and be more complicated, which I want to avoid)

    And how do I encode a 360 degree video with FFMPEG ?