Recherche avancée

Médias (2)

Mot : - Tags -/plugins

Autres articles (53)

  • Organiser par catégorie

    17 mai 2013, par

    Dans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
    Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
    Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)

  • 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

Sur d’autres sites (7234)

  • Installed but not able to config FFMPEG

    30 juillet 2016, par user3506

    So I’m using Windows 10, android-ndk-r12b and have installed FFMPEG 3.1.1 on my computer.
    I’ve checked that the installation has been successful with my command line (command prompt).

    ffmpeg -version

    I try to use FFMPEG with Android so I’m following this tutorial :
    http://www.roman10.net/2013/08/18/how-to-build-ffmpeg-with-ndk-r9/

    In this tutorial they are opening ffmpeg-2.0.1/configure file with a text editor.

    I can’t find the equivalent in my FFMPEG folder. Have I missed something ?
    Is it because I haven’t any editor than Atom installed on my computer ?
    enter image description here

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