Recherche avancée

Médias (91)

Autres articles (71)

  • La file d’attente de SPIPmotion

    28 novembre 2010, par

    Une file d’attente stockée dans la base de donnée
    Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
    Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...)

  • Activation de l’inscription des visiteurs

    12 avril 2011, par

    Il est également possible d’activer l’inscription des visiteurs ce qui permettra à tout un chacun d’ouvrir soit même un compte sur le canal en question dans le cadre de projets ouverts par exemple.
    Pour ce faire, il suffit d’aller dans l’espace de configuration du site en choisissant le sous menus "Gestion des utilisateurs". Le premier formulaire visible correspond à cette fonctionnalité.
    Par défaut, MediaSPIP a créé lors de son initialisation un élément de menu dans le menu du haut de la page menant (...)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

Sur d’autres sites (13979)

  • Revision 581731a95f : vp8enc : Prevent out of bounds memory access. Prevent out of bounds access when

    17 janvier 2015, par Alex Converse

    Changed Paths :
     Modify /vp8/encoder/onyx_if.c


     Modify /vp8/encoder/onyx_int.h


     Modify /vp8/vp8_cx_iface.c



    vp8enc : Prevent out of bounds memory access.

    Prevent out of bounds access when attempting to increase frame size

    Change-Id : I710c40c692802a72963c9680c2125da17f9060a9

  • Minimal "hello world" for WebRTC real-time streaming ?

    4 novembre 2018, par d33tah

    I’d like to learn about how to set up HTML5 live streaming. The use case I have in mind is related to controlling a Lego Mindstorms robot, which means that I want minimal latency. So far I experimented with RTMP using this Docker repository, but found that I can’t seem to tune it to get a real-time streaming. After a bit of research, I found that WebRTC could perhaps fit my use case.

    Let’s say I have a ffmpeg-compatible source, such as a webcam or x11grab data that I would like to stream using WebRTC. What would a "hello, world" look like that achieves this goal ?

  • MP4 - Prepare header for pseudostreaming requests

    3 février 2014, par davidkomer

    Assuming the client does not support byte-range requests and therefore will make requests like test.mp4 ?startoffset=2000

    How can the server prepare an mp4 header that works for all requests... is there a bare minimum that works every time or must it be the actual original header ?

    Similarly, is there a way to use ffprobe to export the original header as-is (i.e. binary format) so that it can simply be resent at the beginning of each request, by the server ?

    Thanks !

    EDIT : Did some digging around using AtomicParsley and looking at some pseudostreamed videos via archive.org. Seems that the "header" does need to be reconstructed for the new stream. Specifically, the moov atom and mdat data.

    Putting aside mdat for now, are there any helpful libraries out there that will convert from moov to moov, or at least make it easier ? No C++ please, but C is fine