Recherche avancée

Médias (1)

Mot : - Tags -/école

Autres articles (69)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Personnaliser en ajoutant son logo, sa bannière ou son image de fond

    5 septembre 2013, par

    Certains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;

  • Les tâches Cron régulières de la ferme

    1er décembre 2010, par

    La gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
    Le super Cron (gestion_mutu_super_cron)
    Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)

Sur d’autres sites (10908)

  • lavc/mediacodec : rescale pts before decoding for both hw and sw buffers

    3 juillet 2017, par Aman Gupta
    lavc/mediacodec : rescale pts before decoding for both hw and sw buffers
    

    Replicates the logic used in the wrap_hw_buffer path to wrap_sw_buffer
    as well.

    Fixes decoding issues observed on AMLogic devices with
    OMX.amlogic.mpeg2.decoder.awesome, where the decoder would spit out a
    constant stream of "mPtsRecoveryCount" errors and decoded frames were
    returned in the incorrect order.

    Signed-off-by : Matthieu Bouron <matthieu.bouron@gmail.com>

    • [DH] libavcodec/mediacodecdec_common.c
  • colors messed up (distorted) when making a gif from png files using ffmpeg

    13 novembre 2019, par wxyz

    I have a sequence of png images : image_00.png, image_01.png, image_02.png, etc. I want to convert them to a gif, so I tried the command

    ffmpeg -i image_%02d.png video.gif

    Unfortunately, the resulting gif has distorted colors. More specifically, it added a weird sort of yellow haze around some objects in the video.

    I also tried using the command above with all possible pixel format options (which I determined using the command ffmpeg -h encoder=gif) : rgb8, bgr8, rgb4_byte, bgr4_byte, gray, pal8. For example ffmpeg -i image_%02d.png -pix_fmt rgb8 video.gif. Unfortunately, all of the resulting gifs had some sort of color distortion.

    I also observed that this distortion does not occur if I convert the images to mp4 instead of gif. However, if I try converting that mp4 to a gif, I end up with the distortion again.

    How can I produce this gif without color distortion ?

  • avformat/format : silence -Wdiscarded-qualifiers

    19 septembre 2015, par Ganesh Ajjanagadde
    avformat/format : silence -Wdiscarded-qualifiers
    

    lpd.buf is non-const and discards the const qualifier of zerobuffer.
    This fixes -Wdiscarded-qualifiers observed with a variety of compilers, including GCC 5.2.
    Note that this does not change the type of zerobuffer, and merely makes the intent explicit.

    Signed-off-by : Ganesh Ajjanagadde <gajjanagadde@gmail.com>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/format.c