Recherche avancée

Médias (1)

Mot : - Tags -/biographie

Autres articles (69)

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

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

Sur d’autres sites (12065)

  • Bump after 7.0 branch point

    26 mars 2024, par Michael Niedermayer
    Bump after 7.0 branch point
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavcodec/version.h
    • [DH] libavdevice/version.h
    • [DH] libavfilter/version.h
    • [DH] libavformat/version.h
    • [DH] libavutil/version.h
    • [DH] libpostproc/version.h
    • [DH] libswresample/version.h
    • [DH] libswscale/version.h
  • avcodec/av1dec : add an option to select an operating point

    15 novembre 2020, par James Almer
    avcodec/av1dec : add an option to select an operating point
    

    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] doc/decoders.texi
    • [DH] libavcodec/av1dec.c
    • [DH] libavcodec/av1dec.h
  • avcodec/aacdec_fixed : Move fixed-point sinewin tables to its only user

    30 décembre 2020, par Andreas Rheinhardt
    avcodec/aacdec_fixed : Move fixed-point sinewin tables to its only user
    

    The fixed-point AAC decoder is the only user of the fixed-point sinewin
    tables from sinewin ; and it only uses a few of them (about 10% when
    counting by size). This means that guarding initializing these tables by
    an AVOnce (as done in 3719122065863f701026632f610175980d42b05a) is
    unnecessary for them. Furthermore the array of pointers to the
    individual arrays is also unneeded.

    Therefore this commit moves these tables directly into aacdec_fixed.c ;
    this is done by ridding the original sinewin.h and sinewin_tablegen.h
    headers completely of any fixed-point code at the cost of a bit of
    duplicated code (the alternative is an ugly ifdef-mess).

    This saves about 58KB from the binary when using hardcoded tables (as
    these tables are hardcoded in this scenario) ; when not using hardcoded
    tables, most of these savings only affect the .bss segment, but the rest
    (< 1KB) contains relocations (i.e. savings in .data.rel.ro).

    Reviewed-by : Lynne <dev@lynne.ee>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] configure
    • [DH] libavcodec/Makefile
    • [DH] libavcodec/aac_defines.h
    • [DH] libavcodec/aacdec_fixed.c
    • [DH] libavcodec/aacdec_template.c
    • [DH] libavcodec/sinewin.c
    • [DH] libavcodec/sinewin.h
    • [DH] libavcodec/sinewin_fixed.c
    • [DH] libavcodec/sinewin_fixed_tablegen.c
    • [DH] libavcodec/sinewin_fixed_tablegen.h
    • [DH] libavcodec/sinewin_tablegen.c
    • [DH] libavcodec/sinewin_tablegen.h
    • [DH] libavcodec/sinewin_tablegen_template.c