Recherche avancée

Médias (3)

Mot : - Tags -/Valkaama

Autres articles (45)

  • Keeping control of your media in your hands

    13 avril 2011, par

    The vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
    While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
    MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
    MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...)

  • 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

  • Déploiements possibles

    31 janvier 2010, par

    Deux types de déploiements sont envisageable dépendant de deux aspects : La méthode d’installation envisagée (en standalone ou en ferme) ; Le nombre d’encodages journaliers et la fréquentation envisagés ;
    L’encodage de vidéos est un processus lourd consommant énormément de ressources système (CPU et RAM), il est nécessaire de prendre tout cela en considération. Ce système n’est donc possible que sur un ou plusieurs serveurs dédiés.
    Version mono serveur
    La version mono serveur consiste à n’utiliser qu’une (...)

Sur d’autres sites (6955)

  • Revision b815f3a977 : Android.mk : add a flag to control shared/static lib ndk-build ENABLE_SHARED=1 .

    9 avril 2015, par James Zern

    Changed Paths :
     Modify /build/make/Android.mk



    Android.mk : add a flag to control shared/static lib

    ndk-build ENABLE_SHARED=1 ...

    Change-Id : Idd64804b165d0d4bbfb0b242d6c4eee5e828dab4

  • lavfi/avfilter : document AVFilterContext.is_disabled as private

    3 octobre 2024, par Anton Khirnov
    lavfi/avfilter : document AVFilterContext.is_disabled as private
    

    Ideally there should be three parts to the filter context - public,
    private to the filter, and private to generic code, but only the first
    and the last of these exist currently. Until the second is implemented,
    this is better than nothing.

    • [DH] libavfilter/avfilter.h
  • h264 : reset the private data in init_thread_copy()

    29 mars 2015, par Anton Khirnov
    h264 : reset the private data in init_thread_copy()
    

    The generic code copies the main context’s private data to all the
    others. However that is quite dangerous, as it might end up copying some
    pointers that are or will become invalid.

    Since everything we actually need will be copied later in
    update_thread_context(), it’s safest to zero the private data in
    init_thread_copy(), so it works the same way as init for the main
    context.

    • [DH] libavcodec/h264.c