Recherche avancée

Médias (91)

Autres articles (60)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

  • Les vidéos

    21 avril 2011, par

    Comme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
    Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
    Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...)

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

  • lavf : make overlay_qsv work based on framesync

    3 avril 2018, par Ruiling Song
    lavf : make overlay_qsv work based on framesync
    

    The existing version which was cherry-picked from Libav does not work
    with FFmpeg framework, because ff_request_frame() was totally
    different between Libav (recursive) and FFmpeg (non-recursive).
    The existing overlay_qsv implementation depends on the recursive version
    of ff_request_frame to trigger immediate call to request_frame() on input pad.
    But this has been removed in FFmpeg since "lavfi : make request_frame() non-recursive."
    Now that we have handy framesync support in FFmpeg, so I make it work
    based on framesync. Some other fixing which is also needed to make
    overlay_qsv work are put in a separate patch.

    Signed-off-by : Ruiling Song <ruiling.song@intel.com>

    • [DH] libavfilter/Makefile
    • [DH] libavfilter/vf_overlay_qsv.c
  • lavc/pnm_parser : disable parsing for text based PNMs

    27 juin 2016, par Clément Bœsch
    lavc/pnm_parser : disable parsing for text based PNMs
    

    P1, P2, and P3 are respectively the text versions of PBM, PGM and PPM
    files.

    We can not obtain the buffer size using av_imgage_get_buffer_size() as
    every pixel in the picture will occupy a random size between 16 and 32
    bits ("4 " and "231 " are such example).

    Ideally, we could look for the next header (or EOF) in the bytestream,
    but this commit is meant to fix a decoding regression introduced by
    48ac4532d437790e56b8ed5d0d467dc88685f035.

    Fix Ticket #5670

    • [DH] libavcodec/pnm_parser.c
  • avformat/http: Initialize .str based default for AV_OPT_TYPE_STRING types

    31 octobre 2015, par Michael Niedermayer
    avformat/http: Initialize .str based default for AV_OPT_TYPE_STRING types
    

    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/http.c