Recherche avancée

Médias (91)

Autres articles (68)

  • Publier sur MédiaSpip

    13 juin 2013

    Puis-je poster des contenus à partir d’une tablette Ipad ?
    Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir

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

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

Sur d’autres sites (11922)

  • How to use ffmpeg for youtube stream ads for 2017 [on hold]

    24 août 2017, par Trần Quang Họa

    Can anybody share me the code using the url of a video above any wed as input for ffmpeg so the stream output is not.

  • doc/general.texi : fix SDX2 description

    29 octobre 2015, par Paul B Mahol
    doc/general.texi : fix SDX2 description
    

    Signed-off-by : Paul B Mahol <onemda@gmail.com>

    • [DH] doc/general.texi
  • pyav / ffmpeg / libav access side data without decoding the video

    19 juin 2021, par user1315621

    Right now I am accessing the motion vectors in the following way :

    &#xA;

    container = av.open(&#xA;    rtsp_url, &#x27;r&#x27;,&#xA;    options={&#xA;        &#x27;rtsp_transport&#x27;: &#x27;tcp&#x27;,&#xA;        &#x27;stimeout&#x27;: &#x27;5000000&#x27;,  &#xA;        &#x27;max_delay&#x27;: &#x27;5000000&#x27;, &#xA;    }&#xA;)&#xA;stream = container.streams.video[0]&#xA;codec_context = stream.codec_context&#xA;codec_context.export_mvs = True&#xA;&#xA;&#xA;for packet in container.demux(video=0):&#xA;    for video_frame in packet.decode():&#xA;        motion_vectors_raw = video_frame.side_data.get(&#x27;MOTION_VECTORS&#x27;)&#xA;

    &#xA;

    It seems to me that this does decode the video_frame. Is there a way to obtain the motion vectors without having to decode the entire frame ? My goal is to reduce the CPU utilization.

    &#xA;