Recherche avancée

Médias (1)

Mot : - Tags -/portrait

Autres articles (56)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (9372)

  • libavformat/mov : Accept known codepoints in ’colr’

    17 août 2016, par Steven Robertson
    libavformat/mov : Accept known codepoints in ’colr’
    

    This change relaxes the whitelist on reading color metadata in MOV/BMFF
    containers. The whitelist on writing values is still in place.

    As a consequence it also fixes an apparent bug in reading ’nclc’ values.
    The ’nclc’ spec [1] is in harmony with ISO 23001-8 for the values it
    lists, but the code getting removed was remapping 5->6 and 6->7 for
    primaries, which is incorrect, and was remapping 6->5 for color matrix
    ("colorspace" in the code), which is equivalent but an unnecessary
    inconsistency. This logic error doesn’t appear in movenc.

    Removing the whitelist allows proper conversion when the source codec
    relies on the container for proper signaling of newer codepoints, such
    as DNxHR and VP9. If converting to a codec or container that has updated
    its spec to include the new codepoints, the metadata will be preserved.
    If going back to MOV/BMFF, the output whitelist will still kick in, so
    this won’t result in out-of-spec files being created.

    [1] https://developer.apple.com/library/mac/technotes/tn2162/_index.html

    Signed-off-by : Steven Robertson <steven@strobe.cc>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mov.c
  • Multiply the video with a scalar with FFMPEG

    16 novembre 2020, par Terpsiphone

    I have to adjust a video which was too dark. In openCV, I simply used Img.Mul() to multiply each of the RGB band with a same scalar and got good result.

    &#xA;

    Could one do the equivalent operation with FFMPEG ? I tried eq with contrast and brightness, but it was not quite the same thing.

    &#xA;

    Edit : thanks to a clue in @VC.One's answer below I was able to emulate Img.Mul() with :

    &#xA;

    ffmpeg -i input.file -vf colorlevels=rimax=0.5:gimax=0.5:bimax=0.5 -c:a copy output.file&#xA;

    &#xA;

  • change max Buffer Length in MPEG-dash format

    17 novembre 2020, par ADL

    I'm trying to change the max buffer length on my video streaming in clappr video player.&#xA;I know that in HLS format the way to do it is like this :

    &#xA;

    player = new Clappr.Player({&#xA;      playback: {&#xA;        hlsjsConfig: {&#xA;         maxMaxBufferLength: 30&#xA;      }}})&#xA;

    &#xA;

    And it's realy working for HLS videos,&#xA;I'm looking for equivalent way to do it with MPEG-dash foramt

    &#xA;