Recherche avancée

Médias (91)

Autres articles (14)

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

  • Emballe médias : à quoi cela sert ?

    4 février 2011, par

    Ce plugin vise à gérer des sites de mise en ligne de documents de tous types.
    Il crée des "médias", à savoir : un "média" est un article au sens SPIP créé automatiquement lors du téléversement d’un document qu’il soit audio, vidéo, image ou textuel ; un seul document ne peut être lié à un article dit "média" ;

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

Sur d’autres sites (4391)

  • avutil/channel_layout : change AV_CHAN_SILENCE to AV_CHAN_UNUSED in the docs

    11 février 2024, par Marton Balint
    avutil/channel_layout : change AV_CHAN_SILENCE to AV_CHAN_UNUSED in the docs
    

    It got renamed during the API design phase.

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

    • [DH] libavutil/channel_layout.h
  • avconv : drop update_sample_fmt()

    28 juin 2015, par Anton Khirnov
    avconv : drop update_sample_fmt()
    

    There is only one decoder left that supports this (libopus, which is not
    used by default since we have a native one) and this code goes against
    the avconv design, since it propagates information back from the encoder
    to decoder.

    • [DBH] avconv.c
  • Best way to develop a multimedia player [on hold]

    30 décembre 2016, par Martin

    I would like to develop a multimedia player. I should design a structure which describes a collection of video and audio files. It can specify each video stream start and end time (such as different audio streams) and the player should play the collection as it was one stream.

    An example : I want to play 2 minutes from the first video file’s video stream from minute 3, and 3 minutes from the second video file from minute 1, during the 5 minute specified above I want to play a third file’s audio stream.

    I thought about developing it in C (which has the proper memory manipulation possibilities) with the help of ffmpeg library (to be able to support a wide range of media formats) and the SDL library to show the output.
    Have you any thoughts on this which could help me ? (eg. : any pitfalls, other/better ways to solve this problem)