Recherche avancée

Médias (91)

Autres articles (68)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

Sur d’autres sites (10178)

  • ffplay : fill the unused part of the window with black

    22 septembre 2012, par Marton Balint

    ffplay : fill the unused part of the window with black

  • lavu/hwcontext_vaapi : fix a race mapping to allow CSC to YUV420P

    7 août, par nyanmisaka
    lavu/hwcontext_vaapi : fix a race mapping to allow CSC to YUV420P
    

    There's a race condition for YUV420P when mapping from pix_fmt
    to VA fourcc, both I420 and YV12 could be found by pix_fmt.

    Currently, vaapi_get_image_format() iterates over the query results
    of pix_fmt and returns the first matching result in the order
    declared in the driver. This may result in an incorrect image_format.

    Now use fourcc to find the image_format.

    Fixes :
    ffmpeg -hwaccel vaapi -hwaccel_output_format vaapi -i INPUT \
    - vf scale_vaapi=format=yuv420p,hwmap,format=yuv420p \
    - vframes 1 -f rawvideo -y yuv420p.yuv

    Signed-off-by : nyanmisaka <nst799610810@gmail.com>

    • [DH] libavutil/hwcontext_vaapi.c
  • avcodec/mpeg4videoenc : Fix data race when using AC prediction

    14 juin, par Andreas Rheinhardt
    avcodec/mpeg4videoenc : Fix data race when using AC prediction
    

    The check for whether we can use the fast path to process
    AC coefficients used the qscale value belonging to a different
    slice ; this worked in practice, because the predicted AC values
    are zero in this case, so it does not matter whether we use
    the fast or the slow path.

    Fix this by checking for first_slice_line instead. This fixes all
    the races in the encoding part of the vsynth*-mpeg4-thread tests
    (and fixes them if no frame threading is in use for the decoding part).

    (The left prediction check may use data from a different slice, too,
    but said slice is always processed by the same thread, so that no race
    can happen. Given that out-of-slice AC values are zero, it does not
    matter whether we use the fast path or the slow path either.)

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@outlook.com>

    • [DH] libavcodec/mpeg4videoenc.c