Recherche avancée

Médias (91)

Autres articles (74)

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

  • ffmpeg making flashing / blinking text

    16 septembre 2022, par samusugiru

    I'm trying to use ffmpeg to add blinking / flashing text to a short movie file.

    


    The code attached works for blinking text every 10th frame BUT the text only comes up for a single frame, so it's not very readable. I'd like it to hold for, say, 4 frames. I wonder if theres some kinda fancy combo using between as well as enable ?

    


    I'm semi new to this so my brain stopped when trying to come up with a solution.

    


    ffmpeg -i input.mov -vf "drawtext=text='TEXTY':enable= (not (mod(n\,10)) )" output.gif


    


  • avcodec/sanm : support "StarWars - Making Magic" video

    1er mai, par Manuel Lauss
    avcodec/sanm : support "StarWars - Making Magic" video
    

    Videos of "StarWars - Making Magic" consist of 640x480 codec3 frames
    which establish a background, and a 320x240 codec48 video put on top
    at random left/top offsets.

    To support this, a new default buffer "fbuf", which holds the final
    image to be presented, is added, since codec37/47/48 need their 2/3 buffers
    to be private to themselves. The decoded result is then copied to the fbuf,
    honoring the left/top offsets if required.

    Signed-off-by : Manuel Lauss <manuel.lauss@gmail.com>

    • [DH] libavcodec/sanm.c
  • Making screenshots in FFmpeg : How to deal with differing actual width vs displayed width ? [duplicate]

    15 mars 2020, par browncatmegazord

    I usually have no problem making gifs and screenshots from a video with FFmpeg using standard commands like so :

    ffmpeg -i input -frames:v 1 -q:v 2 output.jpeg

    Recently I had to deal with an .mkv file that had a pixel width of 720, but a "display width" of 853 (Apparently this non-square pixel stuff is a thing), and my usual commands would give me a 720x480 screenshot that is oddly squashed.

    I managed to force its size by adding a -s 853x480 into the above command, but it looks a little bit stretched, and I suspect there’s a cleaner way to do this without me having to manually check what the displayed width is.

    Would appreciate some insight about this !