Recherche avancée

Médias (1)

Mot : - Tags -/blender

Autres articles (74)

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

  • Support audio et vidéo HTML5

    10 avril 2011

    MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
    Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
    Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
    Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

Sur d’autres sites (9056)

  • mpegts : Support running the write_trailer function without an AVIOContext

    19 décembre 2014, par Martin Storsjö
    mpegts : Support running the write_trailer function without an AVIOContext
    

    If opening and closing dynamic buffers as AVIOContext, we may
    not have any AVIOContext available when wanting to close and
    deallocate the muxer. Allow calling write_trailer despite this.

    Signed-off-by : Martin Storsjö <martin@martin.st>

    • [DBH] libavformat/mpegtsenc.c
  • lavu/riscv : use Zbb REV8 at run-time

    30 mai 2024, par Rémi Denis-Courmont
    lavu/riscv : use Zbb REV8 at run-time
    

    This adds runtime support to use Zbb REV8 for 32- and 64-bit byte-wise
    swaps. The result is about five times slower than if targetting Zbb
    statically, but still a lot faster than the default bespoke C code or a
    call to GCC run-time functions.

    For 16-bit swap, this is however unsurprisingly a lot worse, and so this
    sticks to the baseline. In fact, even using REV8 statically does not
    seem to be beneficial in that case.

    Zbb static Zbb dynamic I baseline
    bswap16 : 0.668184765 3.340764069 0.668029012
    bswap32 : 0.668174014 3.340763319 9.353855435
    bswap64 : 0.668221765 3.340496313 14.698672283
    (seconds for 1 billion iterations on a SiFive-U74 core)

    • [DH] libavutil/riscv/bswap.h
  • avformat/matroskaenc : Allow a custom destination for writing Tags

    29 avril 2020, par Andreas Rheinhardt
    avformat/matroskaenc : Allow a custom destination for writing Tags
    

    Up until now, the Matroska muxer writes only one Tags level 1 element
    and therefore using a certain place to store the dynamic buffer used for
    writing it was hardcoded ; yet the Matroska specifications allow an
    unlimited amount of Tags elements and we have reason to write a second
    one : If chapters are provided after writing the header, they are written
    when writing the trailer ; yet the corresponding tags are ignored. This
    can be fixed by writing them in a second Tags element.

    Also use a MatroskaMuxContext * instead of an AVFormatContext * as
    parameter in mkv_write_tag() and mkv_write_tag_targets() as that is all
    these functions use.

    Signed-off-by : Andreas Rheinhardt <andreas.rheinhardt@gmail.com>

    • [DH] libavformat/matroskaenc.c