Recherche avancée

Médias (91)

Autres articles (58)

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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (8806)

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