Recherche avancée

Médias (1)

Mot : - Tags -/Rennes

Autres articles (82)

  • Diogene : création de masques spécifiques de formulaires d’édition de contenus

    26 octobre 2010, par

    Diogene est un des plugins ? SPIP activé par défaut (extension) lors de l’initialisation de MediaSPIP.
    A quoi sert ce plugin
    Création de masques de formulaires
    Le plugin Diogène permet de créer des masques de formulaires spécifiques par secteur sur les trois objets spécifiques SPIP que sont : les articles ; les rubriques ; les sites
    Il permet ainsi de définir en fonction d’un secteur particulier, un masque de formulaire par objet, ajoutant ou enlevant ainsi des champs afin de rendre le formulaire (...)

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

  • Utilisation et configuration du script

    19 janvier 2011, par

    Informations spécifiques à la distribution Debian
    Si vous utilisez cette distribution, vous devrez activer les dépôts "debian-multimedia" comme expliqué ici :
    Depuis la version 0.3.1 du script, le dépôt peut être automatiquement activé à la suite d’une question.
    Récupération du script
    Le script d’installation peut être récupéré de deux manières différentes.
    Via svn en utilisant la commande pour récupérer le code source à jour :
    svn co (...)

Sur d’autres sites (9396)

  • libavcodec/webp : treat out-of-bound palette index as translucent black

    16 septembre 2014, par Pascal Massimino
    libavcodec/webp : treat out-of-bound palette index as translucent black
    

    See https://code.google.com/p/webp/issues/detail?id=206
    for a description of the problem/fix.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    This patch makes the decoder follow the recommendation of the spec.
    There is some disagreement (see "[FFmpeg-devel] [PATCH] : libavcodec/webp")
    about what would be best to be written in the spec, so in case the spec
    is changed again, this potentially would need to be amended or reverted

    • [DH] libavcodec/webp.c
  • avcodec/webp : add optimization : use local palette with extra padding

    22 septembre 2014, par Pascal Massimino
    avcodec/webp : add optimization : use local palette with extra padding
    

    for big enough pictures.

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/webp.c
  • Overlay timelapse video on solid background colour using ffmpeg

    28 juillet 2014, par hamchapman

    I’ve got a load of screenshots of a homepage that are named homescreen000001.png, homescreen000002.png, etc and I’m trying to create a time-lapse video of these images using ffmpeg.

    I’ve got it working in general when I run the following :

    ffmpeg -f image2 \
          -i ~/Desktop/homescreen%06d.png \
          -r 0.5 \
          -s 1440x900 \
          -b:v 1M \
          -vcodec libx264 \
          -pix_fmt yuv420p \
          ~/Desktop/timelapse.mp4

    However, it turns out that some of the images have transparent backgrounds so the background is showing up as black on those images.

    I’d like a white background so I’ve been trying to set that up using ffmpeg as follows :

    ffmpeg -f image2 \
          -loop 1 \
          -i ~/Desktop/whitebg.png \
          -i ~/Desktop/homescreen%06d.png \
          -filter_complex overlay \
          -r 0.5 \
          -s 1440x900 \
          -b:v 1M \
          -vcodec libx264 \
          -pix_fmt yuv420p \
          ~/Desktop/timelapse.mp4

    Here whitebg.png is 2px x 2px png with a white background, and that’s it.

    This ffmpeg command produces a really tiny (in file size) video that’s just a white background.

    Can anyone explain how I can overlay the images as a time-lapse video over a white background using ffmpeg ?