Recherche avancée

Médias (91)

Autres articles (58)

  • D’autres logiciels intéressants

    12 avril 2011, par

    On ne revendique pas d’être les seuls à faire ce que l’on fait ... et on ne revendique surtout pas d’être les meilleurs non plus ... Ce que l’on fait, on essaie juste de le faire bien, et de mieux en mieux...
    La liste suivante correspond à des logiciels qui tendent peu ou prou à faire comme MediaSPIP ou que MediaSPIP tente peu ou prou à faire pareil, peu importe ...
    On ne les connais pas, on ne les a pas essayé, mais vous pouvez peut être y jeter un coup d’oeil.
    Videopress
    Site Internet : (...)

  • 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

  • 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

Sur d’autres sites (9478)

  • libavcodec/xsubenc.c : Fix bounding box coordinates

    7 novembre 2013, par Erik Olofsson
    libavcodec/xsubenc.c : Fix bounding box coordinates
    

    Fix coordinates of the lower right corner of the text area.
    Note that the coordinates are redundant as the size and
    position of the text area are known.
    Many decoders (including Sony Playstation 3, VLC and FFmpeg)
    ignore the redundant coordinates.
    Some hardware decoders need them for correct playback.

    Verified on Philips DVD player models HTS7201 and DVP3380.

    Fixes ticket #3031

    Signed-off-by : Erik Olofsson <eaj.olofsson@gmail.com>
    Reviewed-by : Reimar Döffinger <Reimar.Doeffinger@gmx.de>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/xsubenc.c
  • How do video encoding standards(like h.264) then serialize motion prediction ?

    12 août 2019, par Nephilim

    Motion prediction brute force algorithms, in a nutshell work like this(if I'm not mistaken) :

    &#xA;&#xA;

      &#xA;
    1. Search every possible macroblock in the search window
    2. &#xA;

    3. Compare each of them with the reference macroblock
    4. &#xA;

    5. Take the one that is the most similar and encode the DIFFERENCE between the frames instead of the actual frame.
    6. &#xA;

    &#xA;&#xA;

    Now this in theory makes sense to me. But when it gets to the actual serializing I'm lost. We've found the most similar block. We know where it is, and from that we can calculate the distance vector of it. Let's say it's about 64 pixels to the right.

    &#xA;&#xA;

    Basically, when serializing this block, we do :

    &#xA;&#xA;

      &#xA;
    • Ignore everything but luminosity(encode only Y, i think i saw this somewhere ?), take note of the difference between it and the reference block
    • &#xA;

    • Encode the motion, a distance vector
    • &#xA;

    • Encode the MSE, so we can reconstruct it
    • &#xA;

    &#xA;&#xA;

    Is the output of this a simple 2D array of luminosity values, with an appended/prepended MSE value and distance vector ? Where is the compression in this ? We got to take out the UV component ? There seem to be many resources that take on the surface level of video encoders, but it's very hard to find actual in-depth explanations of modern video encoders. Feel free to correct me on my above statements.

    &#xA;

  • avcodec/pngdec : support decoding sRGB chunks

    17 janvier 2023, par Leo Izen
    avcodec/pngdec : support decoding sRGB chunks
    

    If an sRGB chunk is present in the PNG file, this commit will cause the
    png decoder to ignore the cHRM and gAMA chunks and tag the resulting AVFrames
    with BT.709 primaries, and ISO/IEC 61966-2-1 transfer. If these tags are
    present in the AVFrame, pngenc.c already writes this chunk, so no change was
    needed on the encode-side.

    The PNG spec does not define what happens if sRGB and iCCP are present at
    the same time, it just recommends that this not happen. As of this patch,
    the decoder will have the ICC profile take precedence, and it will not tag
    the pixel data as sRGB.

    Signed-off-by : Leo Izen <leo.izen@gmail.com>

    • [DH] libavcodec/pngdec.c