Recherche avancée

Médias (1)

Mot : - Tags -/censure

Autres articles (32)

  • MediaSPIP Core : La Configuration

    9 novembre 2010, par

    MediaSPIP Core fournit par défaut trois pages différentes de configuration (ces pages utilisent le plugin de configuration CFG pour fonctionner) : une page spécifique à la configuration générale du squelettes ; une page spécifique à la configuration de la page d’accueil du site ; une page spécifique à la configuration des secteurs ;
    Il fournit également une page supplémentaire qui n’apparait que lorsque certains plugins sont activés permettant de contrôler l’affichage et les fonctionnalités spécifiques (...)

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

Sur d’autres sites (7123)

  • configure : Move the bz2 and zlib checks below phtreads

    11 décembre 2013, par Luca Barbato
    configure : Move the bz2 and zlib checks below phtreads
    

    There are alternate implementations of those libraries that use pthreads.

    • [DBH] configure
  • FFMPEG Encoding to prores 4444 with alpha doesn't retain original alpha [closed]

    19 mai 2023, par Nick Weeden

    I'm trying to convert an rgba png to prores 4444 with an alpha. When I run the following command it will create prores file with an alpha. But, the alpha is full white, it doesn't retain the values I put in.

    


    ffmpeg -start_number 1001 -r 24.000 - "pngWithAlpha_%06d.png" -c:v prores_ks -profile:v 4 -alpha_bits 16 -y "proresWithAlpha.mov"


    


    I've tried this with both FFMPEG 4.2.2 and 6.0.0 on a linux system, I'm not sure if I'm doing it wrong or if it is a bug.

    


    Looking at this post it seems it should be possible (they're complaining about quality not a fully missing transfer of the alpha).

    


    I would expect it to pass the alpha straight through but it doesn't. I used alpha_extract to copy the alpha in to the rgb to confirm I'm able to read the alpha from the png, which worked. But the alpha was still full white.

    


  • Create video scroll image

    17 février 2019, par Dinh Quang Khang

    I am creating video scroll vertical image with ffmpeg.

    But video is very bad. Although I set frame rate is 200, it is jerky.

    My video in youtube

    -i "D:\FFMPEG\source.jpg" -i "D:\FFMPEG\logo.png" -i "D:\FFMPEG\audio.mp3" -f lavfi -i color=c=white:s=1280x720:d=41 -f lavfi -i color=c=white:s=1280x720 -loop 1 -filter_complex "[2:a]afifo[audio];[4:v][0:v]vstack=inputs=2[source];[3:v][source]overlay=shortest=1:y='-(t)*200'[source_video];[source_video][1:v]overlay=39:39[video]" -strict very -preset ultrafast -t 00:00:41 -vcodec libx264 -r 200/1 -map [video] -map [audio] "D:\FFMPEG\output.mp4"