Recherche avancée

Médias (3)

Mot : - Tags -/plugin

Autres articles (97)

  • Personnaliser les catégories

    21 juin 2013, par

    Formulaire de création d’une catégorie
    Pour ceux qui connaissent bien SPIP, une catégorie peut être assimilée à une rubrique.
    Dans le cas d’un document de type catégorie, les champs proposés par défaut sont : Texte
    On peut modifier ce formulaire dans la partie :
    Administration > Configuration des masques de formulaire.
    Dans le cas d’un document de type média, les champs non affichés par défaut sont : Descriptif rapide
    Par ailleurs, c’est dans cette partie configuration qu’on peut indiquer le (...)

  • List of compatible distributions

    26 avril 2011, par

    The table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
    If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...)

  • Selection of projects using MediaSPIP

    2 mai 2011, par

    The examples below are representative elements of MediaSPIP specific uses for specific projects.
    MediaSPIP farm @ Infini
    The non profit organizationInfini develops hospitality activities, internet access point, training, realizing innovative projects in the field of information and communication technologies and Communication, and hosting of websites. It plays a unique and prominent role in the Brest (France) area, at the national level, among the half-dozen such association. Its members (...)

Sur d’autres sites (11271)

  • How to stream from camera to browser using ffmpeg [closed]

    7 juin, par Gabriel Furstenheim

    FFMpeg just merged support for WebRTC.

    


    If I understand correctly, this should allow to stream directly from ffmpeg to a website without the use of a server.

    


    How does this work ?

    


    ffmpeg -f dshow -i video=MyCamera ???


    


    I guess something similar to

    


    I'm guessing something like

    


    ffmpeg -f dshow -i video=MyCamera -f webrtc udp://localhost:6666


    


    Also, how would the website look like ?

    


    For simplicity, assume that everything happens in localhost

    


  • Opera Beta with WebM Available

    16 juin 2010, par noreply@blogger.com (John Luther)

    More exciting browser news. Opera has released a Beta build of their desktop browser with WebM playback support. They’ve even made their own WebM demo (about Norway, of course).

  • FFMPEG Streaming updated image in loop to FB Live Video

    24 décembre 2016, par Aakash Gupta

    I am trying to stream image to fb live video using this command :

    ffmpeg -loop 1 -re -i "input.jpg" -pix_fmt yuv420p -profile:v baseline -s 720x480 -bufsize 6000k -vb 400k -maxrate 1500k -deinterlace -t 60 -vcodec libx264 -preset veryfast -g 30 -r 30 -f flv "rtmp_link"

    This command works perfectly for one single input file. But the problem is that I want ffmpeg to stream the latest and updated version of "input.jpg" file because my app is updating this "input.jpg" after every 2-3 seconds but the image that is streamed is the older version, not the updated one.

    If I try to restart this loop, then streaming stops for approx. 4-5 seconds which is sufficient enough for FB live video to consider that streaming has been stopped and it then ends the live video.

    So, is it possible to use the latest available version of input file for streaming in this loop ? I don’t know much about FFMPEG and I tried to search this issue but all in vain.