Recherche avancée

Médias (91)

Autres articles (9)

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

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

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

  • FFMPEG is zoompan works on first and last only

    21 janvier 2019, par Ola Dayo

    I want to convert images to video which works fine with ffmpeg but i need to add ken burns effect to every images.

    the code i was to get only only works on the last and first images (the effect i mean).

    ffmpeg -y -i %d.jpg -t 25 -pix_fmt yuv420p -vf zoompan=z='zoom+0.001':s=1280x800,scale=hd1080 -c:v libx264 -preset fast -crf 22 -t 300 -threads 2  zoomout.mp4
  • How FFmpeg CRF works

    12 février 2020, par park joh

    How FFmpeg -CRF works ?

    How do they decide the best quality of this specific second ?

    Will we get better results if I will split the file by seconds and encode each slice separately with -CRF and then join all the slices or would I will get the same/wors results and why ?

  • How demuxing works in Ffmpeg ?

    9 septembre 2013, par Omkar

    I am trying to understand how demuxing works for hls in FFMPEG.
    I think this should be handled in libavformat/hls.c.
    Not able to figure out

    1. Where/How exactly we populate stream information in AVFormatcontext ? Informations such as number of streams and an array of streams in AVFormatcontext.
    2. What's the difference between hls.c and hlsproto.c ?

    Please clarify.
    Thanks.