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)

  • Add a compat stdatomic.h implementation based on GCC atomics

    28 novembre 2016, par Anton Khirnov
    Add a compat stdatomic.h implementation based on GCC atomics
    

    Adapted from the code by Rémi Denis-Courmont from VLC

    This merges libav commit 4e928ef340ac20325f529d92fcbc51e768085358.

    Signed-off-by : Wan-Teh Chang <wtc@google.com>
    Reviewed-by : wm4 <nfxjfg@googlemail.com>
    Signed-off-by : James Almer <jamrial@gmail.com>

    • [DH] compat/atomics/gcc/stdatomic.h
    • [DH] configure
  • Revision 06510d1ff9 : Enable encoding and bit-stream writing based on mode_info array This commit ena

    13 juin 2014, par Jingning Han

    Changed Paths :
     Modify /vp9/common/vp9_onyxc_int.h


     Modify /vp9/decoder/vp9_decodeframe.c


     Modify /vp9/decoder/vp9_decodemv.c


     Modify /vp9/decoder/vp9_decoder.c


     Modify /vp9/encoder/vp9_context_tree.c


     Modify /vp9/encoder/vp9_encodeframe.c


     Modify /vp9/encoder/vp9_encoder.c



    Enable encoding and bit-stream writing based on mode_info array

    This commit enables vpxenc to encode and write out bit-stream from
    coding information provided by external mode_info array file. It
    currently assumes single reference frame and 8-tap switchable
    prediction filters at frame header level.

    Tested using the mode_info array dumped at VP9 decoder into the
    external file, where the bit-stream was generated by VP9 encoder
    at speed -6. The coding statics remain the same.

    Note that the compression performance will be affected quite a lot
    in the two pass coding setting, where at this point the rate
    control scheme can not be updated properly without statistics
    gathered during rate distortion optimization search.

    Change-Id : Ide979d08d3ce6167c1f2e513c34fd8440f3e2aaf

  • how to play nginx & rtmp based hls live stream on a remote machine

    21 mai 2020, par Ram

    I have installed nginx, rtmp and ffmpeg based hls live streaming working on ubuntu machine. I use this command to stream hls

    &#xA;&#xA;

    sudo ffmpeg -re -i sample.mp4 -vcodec libx264 -vprofile high -g 30 -acodec aac -strict -2 -f flv rtmp://localhost/show/stream2&#xA;

    &#xA;&#xA;

    when I try to play this stream using VLC using following commands on the same machine it works well.

    &#xA;&#xA;

    http://myIp:8080/hls/stream2.m3u8&#xA;

    &#xA;&#xA;

    or

    &#xA;&#xA;

    http://localhost:8080/hls/stream2.m3u8&#xA;

    &#xA;&#xA;

    However when I try to access from remote computer connected to same WIFI, not able to play. VLC gives an error that unable to play the file.

    &#xA;