Recherche avancée

Médias (1)

Mot : - Tags -/musée

Autres articles (56)

  • Submit bugs and patches

    13 avril 2011

    Unfortunately a software is never perfect.
    If you think you have found a bug, report it using our ticket system. Please to help us to fix it by providing the following information : the browser you are using, including the exact version as precise an explanation as possible of the problem if possible, the steps taken resulting in the problem a link to the site / page in question
    If you think you have solved the bug, fill in a ticket and attach to it a corrective patch.
    You may also (...)

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

Sur d’autres sites (7930)

  • avcodec/mpegvideo_enc : Don't reset statistics twice

    19 mars, par Andreas Rheinhardt
    avcodec/mpegvideo_enc : Don't reset statistics twice
    

    This happens currently for the non-main slice contexts.
    But these variables get reset at the start of encode_thread()
    anyway for all slices, so this is unnecessary.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpegvideo_enc.c
  • avcodec/mpeg12dec : Set save_chroma_format also for VCR2

    16 mai, par Andreas Rheinhardt
    avcodec/mpeg12dec : Set save_chroma_format also for VCR2
    

    Otherwise the MpegEncContext would be unnecessarily reinitialized
    once (this does not affect the output for an intra-only variant
    like VCR2) in mpeg_decode_postinit().

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpeg12dec.c
  • avcodec/iff : Use unsigned to avoid compiler warning

    11 juillet 2022, par Andreas Rheinhardt
    avcodec/iff : Use unsigned to avoid compiler warning
    

    GCC 12 apparently believes that negative palette sizes are
    possible (they are not, as this has already been checked during
    init) and therefore emits a -Wstringop-overflow= for the memcpy.
    Using unsigned avoids this.
    (To be honest, there might be a compiler bug involved.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/iff.c