Recherche avancée

Médias (91)

Autres articles (43)

  • Configuration spécifique d’Apache

    4 février 2011, par

    Modules spécifiques
    Pour la configuration d’Apache, il est conseillé d’activer certains modules non spécifiques à MediaSPIP, mais permettant d’améliorer les performances : mod_deflate et mod_headers pour compresser automatiquement via Apache les pages. Cf ce tutoriel ; mode_expires pour gérer correctement l’expiration des hits. Cf ce tutoriel ;
    Il est également conseillé d’ajouter la prise en charge par apache du mime-type pour les fichiers WebM comme indiqué dans ce tutoriel.
    Création d’un (...)

  • Problèmes fréquents

    10 mars 2010, par

    PHP et safe_mode activé
    Une des principales sources de problèmes relève de la configuration de PHP et notamment de l’activation du safe_mode
    La solution consiterait à soit désactiver le safe_mode soit placer le script dans un répertoire accessible par apache pour le site

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (6827)

  • Revision 04d2e57425 : Use vpx prefix for codec independent threading functions Replace vp9_ prefix wi

    2 juillet 2015, par Jingning Han

    Changed Paths :
     Modify /test/vp9_thread_test.cc


     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/common/vp9_thread_common.c


     Modify /vp9/common/vp9_thread_common.h


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/decoder/vp9_decoder.c


     Modify /vp9/decoder/vp9_decoder.h


     Modify /vp9/decoder/vp9_dthread.c


     Modify /vp9/decoder/vp9_dthread.h


     Modify /vp9/encoder/vp9_encoder.c


     Modify /vp9/encoder/vp9_encoder.h


     Modify /vp9/encoder/vp9_ethread.c


     Modify /vp9/vp9_dx_iface.c


     Modify /vpx_thread/vpx_thread.c


     Modify /vpx_thread/vpx_thread.h



    Use vpx prefix for codec independent threading functions

    Replace vp9_ prefix with vpx_ for common multi-threading functions.

    Change-Id : I941a5ead9bfe8213fdad345511d2061b07797b55

  • Revision 9f5811c2da : Add joint motion search in comp_inter_inter mode(experiment) In current code, m

    7 mai 2013, par Yunqing Wang

    Changed Paths :
     Modify /configure


     Modify /vp9/common/vp9_enums.h


     Modify /vp9/common/vp9_rtcd_defs.sh


     Modify /vp9/encoder/vp9_mcomp.c


     Modify /vp9/encoder/vp9_mcomp.h


     Modify /vp9/encoder/vp9_onyx_if.c


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_variance.h


     Modify /vp9/encoder/vp9_variance_c.c



    Add joint motion search in comp_inter_inter mode(experiment)

    In current code, motion vectors got from single prediction mode are used
    in compound prediction mode directly. These motion vectors may not give
    accurate prediction since they are searched independently. In this patch,
    we took Pascal's suggestion, and did joint motion search in compound
    prediction mode to find better motion vectors in this situation.
    Test results :
    Overall PSNR : 0.570%(derf), 0.918%(stdhd) ;
    SSIM : 0.572%(derf), 1.009%(stdhd) ;

    The encoder is a little slower. This can be improved since some c
    code is used in motion search.

    Change-Id : Ib30c9240f6c56c9b070867b4ca89412a76d9f3c6

  • Extract individual macroblock types and their corresponding motion vectors [closed]

    14 mai 2023, par Prajit Kumar

    I need to make a pair for each macroblock from a frame of a video containing its type and motion vector.

    


    I extracted motion vectors by using the python module of mv-extractor.

    


    For macroblock type I used ffmpeg command : ffmpeg -threads 1 -debug 'mb_type' -i file.h264 -f null -

    


    The info received from ffmpeg command doesn't match with the location of motion vectors extracted (Macroblocks which are divided into smaller blocks of size 8X16 or 16X8 do not match with the info of macroblock size received in motion vector info). Also, the ffmpeg command for extracting macroblock type doesn't work properly on some videos.

    


    Can you please tell a more streamlined way of doing this task.