Recherche avancée

Médias (1)

Mot : - Tags -/belgique

Autres articles (30)

  • Les formats acceptés

    28 janvier 2010, par

    Les commandes suivantes permettent d’avoir des informations sur les formats et codecs gérés par l’installation local de ffmpeg :
    ffmpeg -codecs ffmpeg -formats
    Les format videos acceptés en entrée
    Cette liste est non exhaustive, elle met en exergue les principaux formats utilisés : h264 : H.264 / AVC / MPEG-4 AVC / MPEG-4 part 10 m4v : raw MPEG-4 video format flv : Flash Video (FLV) / Sorenson Spark / Sorenson H.263 Theora wmv :
    Les formats vidéos de sortie possibles
    Dans un premier temps on (...)

  • Ajouter notes et légendes aux images

    7 février 2011, par

    Pour pouvoir ajouter notes et légendes aux images, la première étape est d’installer le plugin "Légendes".
    Une fois le plugin activé, vous pouvez le configurer dans l’espace de configuration afin de modifier les droits de création / modification et de suppression des notes. Par défaut seuls les administrateurs du site peuvent ajouter des notes aux images.
    Modification lors de l’ajout d’un média
    Lors de l’ajout d’un média de type "image" un nouveau bouton apparait au dessus de la prévisualisation (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (4372)

  • pthread_frame : don’t sync items between threads for intra-only codecs.

    28 mars 2017, par Ronald S. Bultje
    pthread_frame : don’t sync items between threads for intra-only codecs.
    

    Intra-only codecs should either be able to read these items from the
    bitstream, or they should be set upon codec initialization. In both
    cases, syncing these items at runtime is unnecessary.

    In practice, this fixes race conditions for decoders that read these
    values from the bitstream.

    • [DH] libavcodec/pthread_frame.c
  • h264 : revert 1189af429211ac650aac730368a6cf5b23756605.

    27 mars 2017, par Ronald S. Bultje
    h264 : revert 1189af429211ac650aac730368a6cf5b23756605.
    

    The patch introduces race conditions.

    • [DH] libavcodec/h264_slice.c
    • [DH] libavcodec/h264dec.c
    • [DH] libavcodec/h264dec.h
  • lagarith : assign correct per-thread value to LagarithContext::avctx.

    29 mars 2017, par Ronald S. Bultje
    lagarith : assign correct per-thread value to LagarithContext::avctx.
    

    This fixes race conditions reported by tsan in fate-lagarith. The races
    were because each thread’s LagarithContext::avctx was set to the first
    thread’s AVCodecContext.

    • [DH] libavcodec/lagarith.c