Recherche avancée

Médias (1)

Mot : - Tags -/MediaSPIP

Autres articles (66)

  • Other interesting software

    13 avril 2011, par

    We don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
    The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
    We don’t know them, we didn’t try them, but you can take a peek.
    Videopress
    Website : http://videopress.com/
    License : GNU/GPL v2
    Source code : (...)

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

  • Possibilité de déploiement en ferme

    12 avril 2011, par

    MediaSPIP peut être installé comme une ferme, avec un seul "noyau" hébergé sur un serveur dédié et utilisé par une multitude de sites différents.
    Cela permet, par exemple : de pouvoir partager les frais de mise en œuvre entre plusieurs projets / individus ; de pouvoir déployer rapidement une multitude de sites uniques ; d’éviter d’avoir à mettre l’ensemble des créations dans un fourre-tout numérique comme c’est le cas pour les grandes plate-formes tout public disséminées sur le (...)

Sur d’autres sites (7650)

  • ffmpeg to calculate audio/visual difference between compressed and non-compressed video

    14 juin 2019, par Asymetr

    I’m trying to calculate the audio + visual difference between a harshly compressed video file and one that hasn’t been.
    I’m using pipes because ultimately I wish this to take src from a camera stream.

    I’ve managed to get the video results that I’m looking for, but I’m struggling with the audio.
    I’ve added a line to invert the phase of the compressed audio, so that when they add up in the blend they should almost cancel each other out, but that doesn’t happen.

    ffmpeg -i input.avi -f avi -c:v libxvid -qscale:v 30 -c:a wmav1 - | \
    ffmpeg -i - -f avi -af "aeval='-val(0)':c=same" - | \
    ffmpeg -i input.avi -i - -filter_complex "blend=all_mode=difference" -c:v libx264 -crf 18 -f avi - | \
    ffplay -

    I can still hear all the audio, when what I should be hearing are solely compression artifacts. thx

  • Revision 07ce775189 : Reduce loop filter in cyclic refresh. Reduce the delta loop filter for blocks t

    12 janvier 2013, par Marco Paniconi

    Changed Paths :
     Modify /vp8/encoder/onyx_if.c



    Reduce loop filter in cyclic refresh.

    Reduce the delta loop filter for blocks that are cyclicly refreshed.
    This helps to reduce the dot artifacts that may happen
    when zero_mv blocks are repeatedly loop-filtered.

    This change, along with the fix in :
    https://gerrit.chromium.org/gerrit/#/c/40409/
    helps to reduce this artifact, but cannot remove the dot artifacts completely.

    Change-Id : I44675e7a0f59295b648a3b7d4956fb301231a97f

  • avcodec/sanm : ignore codec45

    14 mars, par Manuel Lauss
    avcodec/sanm : ignore codec45
    

    Codec45 is used in some RA2 videos on top of codec37.

    It consists of 2 tables (768 and 32768 bytes), and datapackets
    like codec2 (delta-x, delta-y) with a pixel counter instead of a color value.
    It then reads the 4 surrounding pixels, looks up 3 separate values
    for each in table1, adds them together to form an index into
    table2 for a new pixel value, in a row.

    The data coming in gets the x/y coordinates out of the visible
    area very quickly (2-3 iterations) ; I don't see any visual
    difference between the ffmpeg-produced frames and ones captured
    with dosbox from rebel assault 2, which leads me to believe this
    codec never worked as intended.

    Signed-off-by : Manuel Lauss <manuel.lauss@gmail.com>

    • [DH] libavcodec/sanm.c