Recherche avancée

Médias (0)

Mot : - Tags -/albums

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (69)

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

  • Revision 5ac6d9778f : Merge "Making vp9_initialize_dec() static."

    19 mai 2014, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/decoder/vp9_decoder.c


     Modify /vp9/vp9_dx_iface.c



    Merge "Making vp9_initialize_dec() static."

  • Revision 8394f1a015 : Merge "Making decode_modes_b function more straightforward."

    3 octobre 2013, par Dmitry Kovalev

    Changed Paths :
     Modify /vp9/decoder/vp9_decodframe.c



    Merge "Making decode_modes_b function more straightforward."

  • avcodec/xbmenc : Allow for making UW images

    19 janvier 2021, par Jose Da Silva
    avcodec/xbmenc : Allow for making UW images
    

    I've run into some bugs where I was downloading a bunch of data and began
    seeing weird hiccups. For example, javascript promises to allow you to push
    some very long lines of data, but the hiccups I saw was with data larger
    than 2k in length (windows) pushed out of a child process stdout piped into
    the stdin of the calling parent program.
    Soo much for smooth promises, this was broken and would run into similar
    problems on a linux PC with 32k line limits.
    The solution was to break the data into smaller chunks than 2k - and then
    these data hiccups disappeared (windows PC).

    It would be expected to be similar for linux PCs (32k I think) and other
    OSes with different sizes.

    If the ANSI required minimum needs to be 509 chars or larger (assuming
    509+<CR>+<LF>+<0>=512), then 509 was chosen as the shortest worst-case
    scenario) in this patch.
    Most small pictures will go output looking pretty much the same data out
    until you get to about 84bytes (672 pixels wide), where lines out begin to
    be split. For example a UW 4K will exceed a 2k readln and a UW 10K picture
    approaches an 8k readln

    The purpose for this patch is to ensure that data remains below the
    readline limits (of 509 chars), so that programs (like javascript) can push
    data in large chunks without breaking into hiccups because the data length
    is too long to be pushed cleanly in one go.
    Subject : [PATCH 3/3] avcodec/xbmenc : Allow for making UW images

    Worst-case ANSI must allow for 509 chars, while Windows allows for 2048
    and Linux for 32K line length. This allows an OS with a small readline
    access limitation to fetch very wide images (created from ffmpeg).

    • [DH] libavcodec/xbmenc.c