Recherche avancée

Médias (16)

Mot : - Tags -/mp3

Autres articles (107)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • Ajout d’utilisateurs manuellement par un administrateur

    12 avril 2011, par

    L’administrateur d’un canal peut à tout moment ajouter un ou plusieurs autres utilisateurs depuis l’espace de configuration du site en choisissant le sous-menu "Gestion des utilisateurs".
    Sur cette page il est possible de :
    1. décider de l’inscription des utilisateurs via deux options : Accepter l’inscription de visiteurs du site public Refuser l’inscription des visiteurs
    2. d’ajouter ou modifier/supprimer un utilisateur
    Dans le second formulaire présent un administrateur peut ajouter, (...)

  • Automated installation script of MediaSPIP

    25 avril 2011, par

    To overcome the difficulties mainly due to the installation of server side software dependencies, an "all-in-one" installation script written in bash was created to facilitate this step on a server with a compatible Linux distribution.
    You must have access to your server via SSH and a root account to use it, which will install the dependencies. Contact your provider if you do not have that.
    The documentation of the use of this installation script is available here.
    The code of this (...)

Sur d’autres sites (14136)

  • id3v2 : catch avio_read errors in check_tag

    11 mai 2015, par Andreas Cadhalpun
    id3v2 : catch avio_read errors in check_tag
    

    Since len is an unsigned int, the comparison is currently treated as
    unsigned and thus ignores all errors from avio_read.

    Thus cast len to int, which is unproblematic, because at that point len
    is between 0 and 4.

    This fixes ’Conditional jump or move depends on uninitialised value’
    valgrind warnings in is_tag.

    Signed-off-by : Andreas Cadhalpun <Andreas.Cadhalpun@googlemail.com>
    Signed-off-by : Michael Niedermayer <michaelni@gmx.at>

    • [DH] libavformat/id3v2.c
  • avformat/dxa : Check fps to be within the supported range more precissely

    24 avril 2021, par Michael Niedermayer
    avformat/dxa : Check fps to be within the supported range more precissely
    

    Fixes : negation of -2147483648 cannot be represented in type 'int32_t' (aka 'int') ; cast to an unsigned type to negate this value to itself
    Fixes : assertion failure
    Fixes : 29102/clusterfuzz-testcase-minimized-ffmpeg_dem_DXA_fuzzer-6744985740378112

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

    • [DH] libavformat/dxa.c
  • tiff : fix overflows when calling av_reduce

    13 décembre 2016, par Andreas Cadhalpun
    tiff : fix overflows when calling av_reduce
    

    The arguments of av_reduce are signed, so the cast to uint64_t is misleading.

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

    • [DH] libavcodec/tiff.c