Recherche avancée

Médias (1)

Mot : - Tags -/net art

Autres articles (73)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • Creating farms of unique websites

    13 avril 2011, par

    MediaSPIP platforms can be installed as a farm, with a single "core" hosted on a dedicated server and used by multiple websites.
    This allows (among other things) : implementation costs to be shared between several different projects / individuals rapid deployment of multiple unique sites creation of groups of like-minded sites, making it possible to browse media in a more controlled and selective environment than the major "open" (...)

Sur d’autres sites (10506)

  • Revision 90932399b4 : Merge "Move eob from BLOCKD to MACROBLOCKD." into experimental

    27 février 2013, par Ronald S. Bultje

    Changed Paths : Modify /vp9/decoder/vp9_decodframe.c Modify /vp9/decoder/vp9_idct_blk.c Modify /vp9/encoder/vp9_rdopt.c Merge "Move eob from BLOCKD to MACROBLOCKD." into experimental

  • Revision 8092aaf9ec : Merge "Optimize vp9_dc_only_idct_add_c function" into experimental

    27 février 2013, par Yunqing Wang

    Changed Paths : Modify /vp9/common/vp9_idct.h Modify /vp9/common/vp9_idctllm.c Modify /vp9/decoder/vp9_decodframe.c Merge "Optimize vp9_dc_only_idct_add_c function" into experimental

  • For WMV files avformat_find_stream_info() shows "Extra data : 8 bits left, value : 0" message

    15 avril 2013, par Mike

    When I call avformat_find_stream_info() for wmv files, the following message is always seen :
    [wmv3 00FAEAE0] Extra data : 8 bits left, value : 0

    After that the program works as expected but anyway I would like to know what does that message mean ? Thank you !

    File info (by ffmpeg -i) :

    Duration: 00:00:06.92, start: 0.000000, bitrate: 1514 kb/s
    Stream #0:0(rus): Audio: wmav2 (a[1][0][0] / 0x0161), 44100 Hz, stereo, fltp, 128 kb/s
    Stream #0:1(rus): Video: wmv3 (Main) (WMV3 / 0x33564D57), yuv420p, 720x576, 1368 kb/s, SAR 16:15 DAR 4:3, 25 tbr, 1k tbn, 1k tbc

    Code :

    AVFormatContext*    pFormatCtx = avformat_alloc_context();
    if (avformat_open_input(&pFormatCtx, "file.wmv", NULL, NULL) < 0)
       return 0;
    if (avformat_find_stream_info(pFormatCtx, NULL) < 0) // HERE WE HAVE GOT THAT MESSAGE
       return 0;