Advanced search

Medias (91)

Other articles (11)

  • Les formats acceptés

    28 January 2010, by

    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 February 2011, by

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

  • Gestion générale des documents

    13 May 2011, by

    MédiaSPIP ne modifie jamais le document original mis en ligne.
    Pour chaque document mis en ligne il effectue deux opérations successives : la création d’une version supplémentaire qui peut être facilement consultée en ligne tout en laissant l’original téléchargeable dans le cas où le document original ne peut être lu dans un navigateur Internet; la récupération des métadonnées du document original pour illustrer textuellement le fichier;
    Les tableaux ci-dessous expliquent ce que peut faire MédiaSPIP sur (...)

On other websites (3500)

  • api-seek-test: first version

    31 July 2015, by Ludmila Glinskih
    api-seek-test: first version
    

    Works only with video stream.
    First pass without seeking — counts crcs of a frames and store it in an array.
    After that it seeks a lot in different places and checks if crcs of these frames and crcs of frames in array are the same.

    Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>

    • [DH] tests/api/Makefile
    • [DH] tests/api/api-seek-test.c
    • [DH] tests/fate/api.mak
  • fftools/ffmpeg_enc: move fps conversion code to ffmpeg_filter

    24 July 2023, by Anton Khirnov
    fftools/ffmpeg_enc: move fps conversion code to ffmpeg_filter
    

    Its function is analogous to that of the fps filter, so filtering is a
    more appropriate place for this.

    The main practical reason for this move is that it places the encoding
    sync queue right at the boundary between filters and encoders. This will
    be important when switching to threaded scheduling, as the sync queue
    involves multiple streams and will thus need to do nontrivial
    inter-thread synchronization.

    In addition to framerate conversion, the closely-related
    * encoder timebase selection
    * applying the start_time offset
    are also moved to filtering.

    • [DH] fftools/ffmpeg.c
    • [DH] fftools/ffmpeg.h
    • [DH] fftools/ffmpeg_enc.c
    • [DH] fftools/ffmpeg_filter.c
  • hwcontext_vulkan: add support for allocating all planes in a single allocation

    7 December 2021, by Wenbin Chen
    hwcontext_vulkan: add support for allocating all planes in a single allocation
    

    VAAPI on Intel can import external frame, but the planes of the external
    frames should be in the same drm object. A new option "contiguous_planes"
    is added to device. This flag tells device to allocate places in one
    memory. When device is derived from vaapi this flag will be enabled.
    A new flag frame_flag is also added to AVVulkanFramesContext. User
    can use this flag to force enable or disable this behaviour.
    A new variable "offset "is added to AVVKFrame. It describe describe the
    offset from the memory currently bound to the VkImage.

    Signed-off-by: Wenbin Chen <wenbin.chen@intel.com>
    Further-modifications-by: Lynne <dev@lynne.ee>

    • [DH] libavutil/hwcontext_vulkan.c
    • [DH] libavutil/hwcontext_vulkan.h