Recherche avancée

Médias (1)

Mot : - Tags -/iphone

Autres articles (59)

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

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

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

Sur d’autres sites (11856)

  • lavu/riscv : AV_READ_TIME cycle counter

    12 septembre 2022, par Rémi Denis-Courmont
    lavu/riscv : AV_READ_TIME cycle counter
    

    This uses the architected RISC-V 64-bit cycle counter from the
    RISC-V unprivileged instruction set.

    In 64-bit and 128-bit, this is a straightforward CSR read.
    In 32-bit mode, the 64-bit value is exposed as two CSRs, which
    cannot be read atomically, so a loop is necessary to detect and fix up
    the race condition where the bottom half wraps exactly between the two
    reads.

    • [DH] libavutil/riscv/timer.h
    • [DH] libavutil/timer.h
  • fftools/ffmpeg : store a separate copy of input codec parameters

    13 août 2022, par Anton Khirnov
    fftools/ffmpeg : store a separate copy of input codec parameters
    

    Use it instead of AVStream.codecpar in the main thread. While
    AVStream.codecpar is documented to only be updated when the stream is
    added or avformat_find_stream_info(), it is actually updated during
    demuxing. Accessing it from a different thread then constitutes a race.

    Ideally, some mechanism should eventually be provided for signalling
    parameter updates to the user. Then the demuxing thread could pick up
    the changes and propagate them to the decoder.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_opt.c
  • fftools/ffmpeg : report new streams from the input thread

    21 mars 2022, par Anton Khirnov
    fftools/ffmpeg : report new streams from the input thread
    

    This avoids a potential race with the demuxer adding new streams. It is
    also more efficient, since we no longer do inter-thread transfers of
    packets that will be just discarded.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg_demux.c