Recherche avancée

Médias (1)

Mot : - Tags -/ogg

Autres articles (44)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

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

  • Librairies et logiciels spécifiques aux médias

    10 décembre 2010, par

    Pour un fonctionnement correct et optimal, plusieurs choses sont à prendre en considération.
    Il est important, après avoir installé apache2, mysql et php5, d’installer d’autres logiciels nécessaires dont les installations sont décrites dans les liens afférants. Un ensemble de librairies multimedias (x264, libtheora, libvpx) utilisées pour l’encodage et le décodage des vidéos et sons afin de supporter le plus grand nombre de fichiers possibles. Cf. : ce tutoriel ; FFMpeg avec le maximum de décodeurs et (...)

Sur d’autres sites (5407)

  • Revision 2de18d1fd2 : Super resolution mode (+CONFIG_SR_MODE) CONFIG_SR_MODE=1, enable SR mode USE_PO

    12 août 2015, par Shunyao Li

    Changed Paths :
     Modify /configure


     Modify /vp9/common/vp9_blockd.h


     Modify /vp9/common/vp9_entropymode.c


     Modify /vp9/common/vp9_entropymode.h


     Modify /vp9/common/vp9_idct.c


     Modify /vp9/common/vp9_idct.h


     Modify /vp9/common/vp9_pred_common.h


     Modify /vp9/common/vp9_rtcd_defs.pl


     Add /vp9/common/vp9_sr_txfm.c


     Add /vp9/common/vp9_sr_txfm.h


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/decoder/vp9_decodemv.c


     Modify /vp9/encoder/vp9_bitstream.c


     Modify /vp9/encoder/vp9_block.h


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_encodemb.c


     Modify /vp9/encoder/vp9_encodemb.h


     Modify /vp9/encoder/vp9_encoder.c


     Modify /vp9/encoder/vp9_firstpass.c


     Modify /vp9/encoder/vp9_rdopt.c


     Modify /vp9/encoder/vp9_tokenize.c


     Modify /vp9/vp9_common.mk



    Super resolution mode (+CONFIG_SR_MODE)

    CONFIG_SR_MODE=1, enable SR mode
    USE_POST_F=1, enable SR post filter
    SR_USE_MULTI_F=1, enable SR post filter family
    Not compatible with other experiments yet

    Change-Id : I116f1d898cc2ff7dd114d7379664304907afe0ec

  • fftools/ffmpeg_filter : fix the flags parsing for scaler

    1er août 2021, par Linjie Fu
    fftools/ffmpeg_filter : fix the flags parsing for scaler
    

    Scaler relys on "-sws_flags" option to pass the flags to swscale
    and scale filter. Currently passing "sws_flags=xxx" as a filter
    option to scaler leads to an incorrect option parsing.

    Check and change the string to "flags=xxx" and dumped flags information.
    (Refer to parse_sws_flags())

    CMD :
    $ffmpeg -v verbose -i input.mp4 -sws_flags lanczos+bitexact+accurate_rnd \
    -vf format=yuv420p,scale=800x600 -an -vframes 10 -f md5 -

    Before :
    [auto_scaler_0 @ 0x7f96c3808680] w:iw h:ih flags :'' interl:0
    [auto_scaler_0 @ 0x7f96c3808680] w:1920 h:1080 fmt:yuvj420p sar:0/1 -> w:1920 h:1080 fmt:yuv420p sar:0/1 flags:0x0
    [Parsed_scale_1 @ 0x7f96c3806e40] w:1920 h:1080 fmt:yuv420p sar:0/1 -> w:800 h:600 fmt:yuv420p sar:0/1 flags:0x0
    MD5=ff1d6091690c6fcd36d458d2a9f648ce

    After :
    [auto_scaler_0 @ 0x7fe94563b4c0] w:iw h:ih flags :'lanczos+bitexact+accurate_rnd' interl:0
    [auto_scaler_0 @ 0x7fe94563b4c0] w:1920 h:1080 fmt:yuvj420p sar:0/1 -> w:1920 h:1080 fmt:yuv420p sar:0/1 flags:0xc0200
    [Parsed_scale_1 @ 0x7fe945639d00] w:1920 h:1080 fmt:yuv420p sar:0/1 -> w:800 h:600 fmt:yuv420p sar:0/1 flags:0xc0200
    MD5=ff1d6091690c6fcd36d458d2a9f648ce

    Signed-off-by : Linjie Fu <linjie.justin.fu@gmail.com>

    • [DH] fftools/ffmpeg_filter.c
  • avcodec/qsvdec : refact, move qsvdec_h2645.c to qsvdec.c

    5 janvier 2021, par Xu Guangxin
    avcodec/qsvdec : refact, move qsvdec_h2645.c to qsvdec.c
    

    Signed-off-by : Xu Guangxin <guangxin.xu@intel.com>
    Signed-off-by : Linjie Fu <linjie.justin.fu@gmail.com>

    • [DH] libavcodec/Makefile
    • [DH] libavcodec/qsvdec.c
    • [DH] libavcodec/qsvdec_h2645.c