Recherche avancée

Médias (1)

Mot : - Tags -/artwork

Autres articles (101)

  • MediaSPIP 0.1 Beta version

    25 avril 2011, par

    MediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
    The zip file provided here only contains the sources of MediaSPIP in its standalone version.
    To get a working installation, you must manually install all-software dependencies on the server.
    If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...)

  • Amélioration de la version de base

    13 septembre 2013

    Jolie sélection multiple
    Le plugin Chosen permet d’améliorer l’ergonomie des champs de sélection multiple. Voir les deux images suivantes pour comparer.
    Il suffit pour cela d’activer le plugin Chosen (Configuration générale du site > Gestion des plugins), puis de configurer le plugin (Les squelettes > Chosen) en activant l’utilisation de Chosen dans le site public et en spécifiant les éléments de formulaires à améliorer, par exemple select[multiple] pour les listes à sélection multiple (...)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

Sur d’autres sites (13660)

  • avutil/cpu : Fix race condition in av_cpu_count()

    2 décembre 2020, par Andreas Rheinhardt
    avutil/cpu : Fix race condition in av_cpu_count()
    

    av_cpu_count() intends to emit a debug message containing the number of
    logical cores when called the first time. The check currently works with
    a static volatile int ; yet this does not help at all in case of
    concurrent accesses by multiple threads. So replace this with an
    atomic_int.

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

    • [DH] libavutil/cpu.c
  • avformat/libsrt : fix race condition with libsrt_network_wait_fd and epoll

    31 janvier 2021, par Marton Balint
    avformat/libsrt : fix race condition with libsrt_network_wait_fd and epoll
    

    The way SRT's async / epoll-based IO works is that the event status is stored
    in the epoll containers. That is, if an event occurs on an SRT socket, and that
    SRT socket isn't part of any epoll container, then that event is lost. If we
    later add that socket to an epoll container, we still won't receive the event
    even if it wasn't serviced.

    Therefore we create the epoll and put the fd into it right after the connection
    is established.

    See http://lists.ffmpeg.org/pipermail/ffmpeg-devel/2021-January/275334.html

    Signed-off-by : Marton Balint <cus@passwd.hu>

    • [DH] libavformat/libsrt.c
  • avcodec/[e]ac3enc : Make encoders init-threadsafe, fix race

    3 décembre 2020, par Andreas Rheinhardt
    avcodec/[e]ac3enc : Make encoders init-threadsafe, fix race
    

    ff_eac3_exponent_init() set values twice when initializing a static
    table ; ergo the initialization code must not run concurrently with
    a running EAC-3 encoder. Yet this code is executed every time an EAC-3
    encoder is initialized. So use ff_thread_once() for this and also for a
    similar initialization performed for all AC-3 encoders to make them all
    init-threadsafe.

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

    • [DH] libavcodec/ac3enc.c
    • [DH] libavcodec/ac3enc_fixed.c
    • [DH] libavcodec/ac3enc_float.c
    • [DH] libavcodec/eac3enc.c