Recherche avancée

Médias (0)

Mot : - Tags -/xmlrpc

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (41)

  • 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

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Contribute to a better visual interface

    13 avril 2011

    MediaSPIP is based on a system of themes and templates. Templates define the placement of information on the page, and can be adapted to a wide range of uses. Themes define the overall graphic appearance of the site.
    Anyone can submit a new graphic theme or template and make it available to the MediaSPIP community.

Sur d’autres sites (6248)

  • avfilter/internal : Mark ff_filter_get_nb_threads() as av_pure

    13 juin 2021, par Andreas Rheinhardt
    avfilter/internal : Mark ff_filter_get_nb_threads() as av_pure
    

    It does not modify anything ; it only returns a value, so it fulfills
    the requirements for av_pure.
    The deeper rationale behind this change is that this function is called
    quite often inside arguments to FFMIN which may lead to two calls to it ;
    declaring this function as av_pure allows the compiler to optimize the
    second call away.

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

    • [DH] libavfilter/internal.h
  • Avoid calling functions repeatedly via FFMIN

    13 juin 2021, par Andreas Rheinhardt
    Avoid calling functions repeatedly via FFMIN
    

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

    • [DH] libavcodec/pngdec.c
    • [DH] libavformat/afc.c
    • [DH] libavformat/avidec.c
  • avcodec/libavcodec.v : Tighten export whitelist

    14 juin 2021, par Andreas Rheinhardt
    avcodec/libavcodec.v : Tighten export whitelist
    

    Currently every symbol (with external linkage) that starts with "av" is
    exported. Yet libaom-av1 has lots of functions that are not meant to be
    exported and start with "av1_" (I counted 1236) ; and libvpx has
    average_split_mvs. These functions are exported if one links these
    libraries statically into a shared libavcodec.so.

    Solve this by tightening the whitelist to "av_", "avcodec_", "avpriv_"
    and (as a special-case) "avsubtitle_free".

    Reviewed-by : Michael Niedermayer <michael@niedermayer.cc>
    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/libavcodec.v