Recherche avancée

Médias (1)

Mot : - Tags -/biomaping

Autres articles (37)

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

  • 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

  • ANNEXE : Les plugins utilisés spécifiquement pour la ferme

    5 mars 2010, par

    Le site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)

Sur d’autres sites (4055)

  • pcm-dvd : Move a variable to a smaller scope

    26 septembre 2014, par Diego Biurrun
    pcm-dvd : Move a variable to a smaller scope
    

    This avoids an unused variable warning on big-endian systems.

    • [DBH] libavcodec/pcm-dvd.c
  • slicethread : Limit the automatic number of threads to 16

    5 septembre 2022, par Martin Storsjö
    slicethread : Limit the automatic number of threads to 16
    

    This matches a similar cap on the number of automatic threads
    in libavcodec/pthread_slice.c.

    On systems with lots of cores, this fixes a couple fate failures
    in 32 bit mode on such machines (where spawning a huge number of
    threads runs out of address space).

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DH] libavutil/slicethread.c
  • avformat/framecrcenc : Don't read after the end of side-data

    6 décembre 2020, par Andreas Rheinhardt
    avformat/framecrcenc : Don't read after the end of side-data
    

    Nothing guarantees that the size of side data containing a palette
    is actually divisible by four (although it should be) ; but for
    big-endian systems, an algorithm is used that presupposed this.
    So switch to an algorithm that does not overread : It processes
    four bytes at a time, but only if all of them are contained in
    the side data.

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

    • [DH] libavformat/framecrcenc.c