Recherche avancée

Médias (91)

Autres articles (52)

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

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

  • (Dés)Activation de fonctionnalités (plugins)

    18 février 2011, par

    Pour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
    SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
    Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
    MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)

Sur d’autres sites (7183)

  • ffmpeg : use log10 instead of log()/log(10)

    29 octobre 2015, par Ganesh Ajjanagadde
    ffmpeg : use log10 instead of log()/log(10)
    

    This is more concise and conveys the intent better.
    Furthermore, it is likely more precise as well due to lack of floating
    point division.

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>

    • [DH] ffmpeg.c
  • qpel_template : Restore author attribution

    30 mai 2014, par Michael Niedermayer
    qpel_template : Restore author attribution
    

    See : 368f50359eb328b0b9d67451f56fda20b3255f9a
    See : 59fe111e8122acc614ace5618e1a4ba7416e9875
    See :
    similarity index 98%
    rename from libavcodec/dsputil_template.c
    rename to libavcodec/qpel_template.c
    index 95d966e..500c75b 100644
    — - a/libavcodec/dsputil_template.c
    +++ b/libavcodec/qpel_template.c
    @@ -1,9 +1,5 @@
    /*
    - * DSP utils
    - * Copyright (c) 2000, 2001 Fabrice Bellard
    - * Copyright (c) 2002-2004 Michael Niedermayer <michaelni@gmx.at>
    - *
    - * gmc & q-pel & 32/64 bit based MC by Michael Niedermayer <michaelni@gmx.at>
    + * quarterpel DSP function templates
    *
    * This file is part of FFmpeg.
    *

    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavcodec/qpel_template.c
  • libopenjpegenc : fix out-of-bounds reads when filling the edges

    13 octobre 2016, par Andreas Cadhalpun
    libopenjpegenc : fix out-of-bounds reads when filling the edges
    

    The calculation of width/height should round up, not round down to
    prevent setting width or height to 0.

    Also image->comps[compno].w is unsigned (at least in openjpeg2), so the
    calculation could silently wrap around without the explicit cast to int.

    Reviewed-by : Michael Bradshaw <mjbshaw@gmail.com>
    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>

    • [DH] libavcodec/libopenjpegenc.c