Recherche avancée

Médias (91)

Autres articles (41)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Multilang : améliorer l’interface pour les blocs multilingues

    18 février 2011, par

    Multilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
    Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.

Sur d’autres sites (7079)

  • What should I do if the video is broken on a black screen when encoding with FFmpeg(h264) ?

    19 novembre 2018, par wowi77

    The MOV is broken when H.264 is encoded as below image. Can I encode it without breaking ?

    Encoding options :

    ffmpeg -y -i "background.mp4" -s "160x64" -c:v libx264 -vprofile baseline -level 3 -q:v 0 -mbtree 1 -r 30 -pix_fmt yuv420p -an -t "0:00:15.000000" "sample.mp4"

    Screen capture

  • chroma key my command for filter white background works but filter white and black ?

    21 décembre 2018, par userpov
    ffmpeg    -i  bakground.avi   -i overlay.avi    -filter_complex       "[1:v]chromakey=0xFFFFFF:0.02:0[keyed];       [0:v][keyed]overlay[out]"    -map "[out]"    output.avi

    this command filter white and black

    I need filter only white color

    please help me

  • ffmpeg overlay filter adds black background for PNG with transparency

    30 janvier 2019, par Pavel S.

    I’m trying to programmatically add PNG overlay over h264 video.

    Even though PNG image has alpha channel, after I apply filter, on a resulting video this image has black background instead of transparent one.
    Here’s the filter :

    "[in][in2]overlay=15:15[out]"

    I’m using openh264 to decode/encode video, so the pixel format of resulting video is YUV420P.
    I’ve tried to explicitly define format in filter :

    [in][in2]overlay=15:15,format=rgba,format=yuv420p[out];

    But no change.
    ffmpeg : 3.4 ;
    openh264 : Git (i.e. 1.9.0)

    Thanks in advance.