Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (58)

  • Participer à sa traduction

    10 avril 2011

    Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
    Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
    Actuellement MediaSPIP n’est disponible qu’en français et (...)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

Sur d’autres sites (7622)

  • Firefox, Chrome, Safari have grey background for MP4 HTML5 video

    5 avril 2016, par James

    Any video (that I can make) with a white background becomes grey in Firefox, Chrome, and Safari (it is white in IE). Well, on my Windows machine it is grey, on my Android phone/tablet and Mac it is white...

    I am using ffmpeg to encode the video. If I encode it as webm, the background is white.

    See : https://jsfiddle.net/Lbg8f6ck/

    I found a hack that fixes it for Chrome :

    <video style="-webkit-filter:brightness(108.5%);"></video>code>

    But it does not work for Firefox or Safari.

    Another hack for Firefox :

    filter:brightness(1.085)

    But for some reason setting it through JavaScript does not work.

    A few versions ago the background was white for Chrome, then became grey again...

    The question is : Why is white grey ?

    Is it an issue with the video or with Chrome, Firefox, Safari in general ? (How can they not support white ?)

    Is it possible to get a white background ?

    Any hacks, workarounds ?

  • Firefox, Chrome, Safari have grey background for MP4 HTML5 video

    28 mars 2023, par James

    Any video (that I can make) with a white background becomes grey in Firefox, Chrome, and Safari (it is white in IE). Well, on my Windows machine it is grey, on my Android phone/tablet and Mac it is white...

    &#xA;&#xA;

    I am using ffmpeg to encode the video. If I encode it as webm, the background is white.

    &#xA;&#xA;

    See : https://jsfiddle.net/Lbg8f6ck/

    &#xA;&#xA;

    I found a hack that fixes it for Chrome :

    &#xA;&#xA;

    <video style="-webkit-filter:brightness(108.5%);"></video>code>

    &#xA;&#xA;

    But it does not work for Firefox or Safari.

    &#xA;&#xA;

    Another hack for Firefox :

    &#xA;&#xA;

    filter:brightness(1.085)&#xA;

    &#xA;&#xA;

    But for some reason setting it through JavaScript does not work.

    &#xA;&#xA;

    A few versions ago the background was white for Chrome, then became grey again...

    &#xA;&#xA;

    The question is : Why is white grey ?

    &#xA;&#xA;

    Is it an issue with the video or with Chrome, Firefox, Safari in general ? (How can they not support white ?)

    &#xA;&#xA;

    Is it possible to get a white background ?

    &#xA;&#xA;

    Any hacks, workarounds ?

    &#xA;

  • ffmpeg concatenate videos - what metadata needs to match [duplicate]

    13 juillet 2022, par yarrichar

    I am trying to concatenate videos that can come from a variety of sources.

    &#xA;

    I was just using the -f concat option, but this runs into issues when the formats don't watch.

    &#xA;

    I can use the filter_complex option (as described in the wiki - https://trac.ffmpeg.org/wiki/Concatenate) but this is much slower.

    &#xA;

    What metadata (codec, bitrate, fps, etc) needs to match so that I can use the faster -f concat option to join the videos ? My understanding here is not great atm.

    &#xA;