Recherche avancée

Médias (1)

Mot : - Tags -/berlin

Autres articles (64)

  • MediaSPIP v0.2

    21 juin 2013, par

    MediaSPIP 0.2 est la première version de MediaSPIP stable.
    Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • MediaSPIP version 0.1 Beta

    16 avril 2011, par

    MediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
    Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
    Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
    Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)

  • Ecrire une actualité

    21 juin 2013, par

    Présentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
    Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
    Vous pouvez personnaliser le formulaire de création d’une actualité.
    Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...)

Sur d’autres sites (8101)

  • Video Conferencing in HTML5 : WebRTC via Web Sockets

    14 juin 2012, par silvia

    A bit over a week ago I gave a presentation at Web Directions Code 2012 in Melbourne. Maxine and John asked me to speak about something related to HTML5 video, so I went for the new shiny : WebRTC – real-time communication in the browser.

    Presentation slides

    I only had 20 min, so I had to make it tight. I wanted to show off video conferencing without special plugins in Google Chrome in just a few lines of code, as is the promise of WebRTC. To a large extent, I achieved this. But I made some interesting discoveries along the way. Demos are in the slide deck.

    UPDATE : Opera 12 has been released with WebRTC support.

    Housekeeping : if you want to replicate what I have done, you need to install a Google Chrome Web Browser 19+. Then make sure you go to chrome ://flags and activate the MediaStream and PeerConnection experiment(s). Restart your browser and now you can experiment with this feature. Big warning up-front : it’s not production-ready, since there are still changes happening to the spec and there is no compatible implementation by another browser yet.

    Here is a brief summary of the steps involved to set up video conferencing in your browser :

    1. Set up a video element each for the local and the remote video stream.
    2. Grab the local camera and stream it to the first video element.
    3. (*) Establish a connection to another person running the same Web page.
    4. Send the local camera stream on that peer connection.
    5. Accept the remote camera stream into the second video element.

    Now, the most difficult part of all of this – believe it or not – is the signalling part that is required to build the peer connection (marked with (*)). Initially I wanted to run completely without a server and just enter the remote’s IP address to establish the connection. This is, however, not a functionality that the PeerConnection object provides [might this be something to add to the spec ?].

    So, you need a server known to both parties that can provide for the handshake to set up the connection. All the examples that I have seen, such as https://apprtc.appspot.com/, use a channel management server on Google’s appengine. I wanted it all working with HTML5 technology, so I decided to use a Web Socket server instead.

    I implemented my Web Socket server using node.js (code of websocket server). The video conferencing demo is in the slide deck in an iframe – you can also use the stand-alone html page. Works like a treat.

    While it is still using Google’s STUN server to get through NAT, the messaging for setting up the connection is running completely through the Web Socket server. The messages that get exchanged are plain SDP message packets with a session ID. There are OFFER, ANSWER, and OK packets exchanged for each streaming direction. You can see some of it in the below image :

    WebRTC demo

    I’m not running a public WebSocket server, so you won’t be able to see this part of the presentation working. But the local loopback video should work.

    At the conference, it all went without a hitch (while the wireless played along). I believe you have to host the WebSocket server on the same machine as the Web page, otherwise it won’t work for security reasons.

    A whole new world of opportunities lies out there when we get the ability to set up video conferencing on every Web page – scary and exciting at the same time !

  • Replace av_dlog with normal av_log at trace level

    16 mars 2015, par Vittorio Giovara
    Replace av_dlog with normal av_log at trace level
    

    This applies to every library where performance is not critical.

    • [DH] avplay.c
    • [DH] libavdevice/dv1394.c
    • [DH] libavdevice/fbdev.c
    • [DH] libavfilter/avfilter.c
    • [DH] libavfilter/internal.h
    • [DH] libavfilter/setpts.c
    • [DH] libavfilter/vf_crop.c
    • [DH] libavfilter/vf_drawtext.c
    • [DH] libavfilter/vf_fieldorder.c
    • [DH] libavfilter/vsrc_movie.c
    • [DH] libavformat/asfdec.c
    • [DH] libavformat/assdec.c
    • [DH] libavformat/avidec.c
    • [DH] libavformat/flvdec.c
    • [DH] libavformat/hevc.c
    • [DH] libavformat/http.c
    • [DH] libavformat/ipmovie.c
    • [DH] libavformat/isom.c
    • [DH] libavformat/mmsh.c
    • [DH] libavformat/mmst.c
    • [DH] libavformat/mov.c
    • [DH] libavformat/mov_chan.c
    • [DH] libavformat/mpeg.c
    • [DH] libavformat/mpegenc.c
    • [DH] libavformat/mpegts.c
    • [DH] libavformat/mpegtsenc.c
    • [DH] libavformat/mux.c
    • [DH] libavformat/mxfdec.c
    • [DH] libavformat/mxfenc.c
    • [DH] libavformat/nsvdec.c
    • [DH] libavformat/oggdec.c
    • [DH] libavformat/r3d.c
    • [DH] libavformat/rmdec.c
    • [DH] libavformat/rtmpproto.c
    • [DH] libavformat/rtpdec.c
    • [DH] libavformat/rtpdec_hevc.c
    • [DH] libavformat/rtpenc.c
    • [DH] libavformat/rtsp.c
    • [DH] libavformat/rtspdec.c
    • [DH] libavformat/utils.c
    • [DH] libavresample/audio_convert.c
    • [DH] libavresample/audio_mix.c
    • [DH] libavresample/resample.c
    • [DH] libavresample/utils.c
  • Replace av_dlog with normal av_log at trace level

    16 mars 2015, par Vittorio Giovara
    Replace av_dlog with normal av_log at trace level
    

    This applies to every library where performance is not critical.

    • [DBH] avplay.c
    • [DBH] libavdevice/dv1394.c
    • [DBH] libavdevice/fbdev.c
    • [DBH] libavfilter/avfilter.c
    • [DBH] libavfilter/internal.h
    • [DBH] libavfilter/setpts.c
    • [DBH] libavfilter/vf_crop.c
    • [DBH] libavfilter/vf_drawtext.c
    • [DBH] libavfilter/vf_fieldorder.c
    • [DBH] libavfilter/vsrc_movie.c
    • [DBH] libavformat/asfdec.c
    • [DBH] libavformat/assdec.c
    • [DBH] libavformat/avidec.c
    • [DBH] libavformat/flvdec.c
    • [DBH] libavformat/hevc.c
    • [DBH] libavformat/http.c
    • [DBH] libavformat/ipmovie.c
    • [DBH] libavformat/isom.c
    • [DBH] libavformat/mmsh.c
    • [DBH] libavformat/mmst.c
    • [DBH] libavformat/mov.c
    • [DBH] libavformat/mov_chan.c
    • [DBH] libavformat/mpeg.c
    • [DBH] libavformat/mpegenc.c
    • [DBH] libavformat/mpegts.c
    • [DBH] libavformat/mpegtsenc.c
    • [DBH] libavformat/mux.c
    • [DBH] libavformat/mxfdec.c
    • [DBH] libavformat/mxfenc.c
    • [DBH] libavformat/nsvdec.c
    • [DBH] libavformat/oggdec.c
    • [DBH] libavformat/r3d.c
    • [DBH] libavformat/rmdec.c
    • [DBH] libavformat/rtmpproto.c
    • [DBH] libavformat/rtpdec.c
    • [DBH] libavformat/rtpdec_hevc.c
    • [DBH] libavformat/rtpenc.c
    • [DBH] libavformat/rtsp.c
    • [DBH] libavformat/rtspdec.c
    • [DBH] libavformat/utils.c
    • [DBH] libavresample/audio_convert.c
    • [DBH] libavresample/audio_mix.c
    • [DBH] libavresample/resample.c
    • [DBH] libavresample/utils.c