Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (62)

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

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, 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 (...)

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

Sur d’autres sites (10415)

  • Evolution #4693 : Homogénéiser , et entre public et privé

    9 mars 2021, par nicod _

    PS : pas compris

    Par ailleurs le pre par défaut ne wrap pas les lignes et si je le double pas d’un code il échappe pas les <

    pre n’échappe pas les balises, ça c’est normal.

    D’ailleurs, normalement on ne devrait pas avoir de retour à la ligne automatique dans un pre mais white-space : pre ; et overflow-x : auto ;
    Et on devrait avoir le retour auto uniquement dans pre + code avec white-space : pre-wrap ;
    (source : http://romy.tetue.net/a-quoi-sert-la-balise-pre)

  • FFmpeg Drawtext Fade Out Performance

    16 août 2021, par Ben Boyle

    I am developing an application that makes system calls to FFmpeg.

    &#xA;

    I found a way to get the drawtext filter isolated and fade out, but the render time increased about 5x.

    &#xA;

    I just want to see if there is something obviously wrong with the command I came up with.

    &#xA;

    ffmpeg -y -i input.mp4 -c:v libx264 -filter_complex "[0]scale=1920:1080,format=rgba, split[base][text];[text]drawtext=fontfile=font1.ttf:text=&#x27;Text1&#x27;:fontcolor= &#x27;white&#x27;:fontsize=34:box=1:boxcolor=mediumpurple:boxborderw=50:x=0:y=690,format=yuva444p,drawtext=fontfile=./resources/fonts/font2.ttf:text=&#x27;Text2&#x27;:fontcolor=&#x27;white&#x27;:fontsize=26:x=0:y=725,fade=t=out:st=12:d=0.2:alpha=1[title];[base][title]overlay" -force_key_frames "expr:gte(t,n_forced*0.05)" output.mp4&#xA;

    &#xA;

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

    &#xA;

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

    &#xA;

    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.

    &#xA;

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

    &#xA;

    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.

    &#xA;