Recherche avancée

Médias (91)

Autres articles (83)

  • Gestion des droits de création et d’édition des objets

    8 février 2011, par

    Par défaut, beaucoup de fonctionnalités sont limitées aux administrateurs mais restent configurables indépendamment pour modifier leur statut minimal d’utilisation notamment : la rédaction de contenus sur le site modifiables dans la gestion des templates de formulaires ; l’ajout de notes aux articles ; l’ajout de légendes et d’annotations sur les images ;

  • Dépôt de média et thèmes par FTP

    31 mai 2013, par

    L’outil MédiaSPIP traite aussi les média transférés par la voie FTP. Si vous préférez déposer par cette voie, récupérez les identifiants d’accès vers votre site MédiaSPIP et utilisez votre client FTP favori.
    Vous trouverez dès le départ les dossiers suivants dans votre espace FTP : config/ : dossier de configuration du site IMG/ : dossier des média déjà traités et en ligne sur le site local/ : répertoire cache du site web themes/ : les thèmes ou les feuilles de style personnalisées tmp/ : dossier de travail (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (12715)

  • avcodec/notchlc : Check available space for luma block code and alpha code

    12 septembre 2020, par Michael Niedermayer
    avcodec/notchlc : Check available space for luma block code and alpha code
    

    Fixes : Timeout (too long -> 2sec)
    Fixes : 25439/clusterfuzz-testcase-minimized-ffmpeg_AV_CODEC_ID_NOTCHLC_fuzzer-5688211127664640

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/notchlc.c
  • avformat/mpegts : Limit copied data to space

    4 novembre 2020, par Michael Niedermayer
    avformat/mpegts : Limit copied data to space
    

    Fixes : out of array access
    Fixes : 26816/clusterfuzz-testcase-minimized-ffmpeg_dem_MPEGTSRAW_fuzzer-6282861159907328.fuzz

    Found-by : continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
    Reviewed-by : Marton Balint <cus@passwd.hu>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/mpegts.c
  • avcodec/magicyuv : Don't waste stack space

    23 septembre 2020, par Andreas Rheinhardt
    avcodec/magicyuv : Don't waste stack space
    

    Now that the HuffEntries are no longer sorted by the MagicYUV decoder,
    their symbols are trivial : The symbol of the element with index i is i.
    They can therefore be removed. Furthermore, despite the length of the
    codes being in the range 1..32 bits, the actual value of the codes is
    <= 4096 (for 12 bit content). The reason for this is that the longer
    codes are on the left side of the tree, so that the higher bits of
    these codes are simply zero. By using an uint16_t for the codes and
    removing the symbols entry, the size of each HuffEntry is decreased from
    eight to four, saving 16KB of stack space.

    Reviewed-by : Paul B Mahol <onemda@gmail.com>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavcodec/magicyuv.c