Recherche avancée

Médias (91)

Autres articles (98)

  • 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

  • Use, discuss, criticize

    13 avril 2011, par

    Talk to people directly involved in MediaSPIP’s development, or to people around you who could use MediaSPIP to share, enhance or develop their creative projects.
    The bigger the community, the more MediaSPIP’s potential will be explored and the faster the software will evolve.
    A discussion list is available for all exchanges between users.

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

  • avcodec : Remove cumbersome way of checking for amount of bytes left

    25 mars 2021, par Andreas Rheinhardt
    avcodec : Remove cumbersome way of checking for amount of bytes left
    

    Several encoders used code like the following to check for the amount of
    bytes left in a PutBitContext :
    pb->buf_end - pb->buf - (put_bits_count(pb) >> 3)
    Besides the fact that using the pointers directly might pose
    a maintainence burden in the future this also leads to suboptimal code :
    The above code reads all three pointers (buf, buf_ptr and buf_end), but
    touching buf is unnecessary and switching to put_bytes_left()
    automatically fixes this.

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

    • [DH] libavcodec/asvenc.c
    • [DH] libavcodec/ffv1enc_template.c
    • [DH] libavcodec/huffyuvenc.c
    • [DH] libavcodec/ljpegenc.c
    • [DH] libavcodec/mpegvideo_enc.c
    • [DH] libavcodec/svq1enc.c
    • [DH] libavcodec/xsubenc.c
  • Revision 225 : Fixed file offset when checking for data tags overflows. Fixed flv file dump sto

    21 avril 2011, par marc.noirot

    Changed Paths :
     Modify /trunk/src/check.c


     Modify /trunk/src/flv.c



    Fixed file offset when checking for data tags overflows.
    Fixed flv file dump stopping when encountering an empty tag body.

  • Checking FFmpeg frame quality to fix striping/artifacts

    10 avril 2019, par je42

    Is there a way to check the quality of a frame/packet before the frame is displayed in an FFmpeg stream ? If a stream is viewed while packet loss is affecting it due to a poor network connection, the end result is frames being displayed with vertical stripes and/or artifacts.

    In our particular case it is preferable that instead of these artifacts being displayed, the last good frame that was decoded be shown instead and displayed until the next good frame without any artifacts has been decoded.

    Does FFmpeg provide any ways to check if the frame contains problems, or is there any other way that I can stop these frames from being displayed ?