Recherche avancée

Médias (0)

Mot : - Tags -/images

Aucun média correspondant à vos critères n’est disponible sur le site.

Autres articles (35)

  • Websites made ​​with MediaSPIP

    2 mai 2011, par

    This page lists some websites based on MediaSPIP.

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

  • 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

Sur d’autres sites (4759)

  • avformat:matroskadec : use a define to mark the EBML length is unknown

    23 février 2019, par Steve Lhomme
    avformat:matroskadec : use a define to mark the EBML length is unknown
    

    Unifying the way the EBML unknown length is signaled, rather than using two
    incompatible values. UINT64_MAX cannot be read as a valid EBML length with the
    current code.

    Co-authored-by : Steve Lhomme <robux4@ycbcr.xyz>
    Co-authored-by : Dale Curtis <dalecurtis@chromium.org>
    Signed-off-by : Michael Niedermayer <michael@niedermayer.cc>

    • [DH] libavformat/matroskadec.c
  • Use Ffmeg to Convert Video to Gif android studio

    21 octobre 2014, par Donnie Ibiyemi

    Am currently making a simple Androidapp that converts a video from the sd card into a gif.

    I learnt Ffmeg is the most efficient method to handle the conversion. But i have no idea how to add ffmeg to my android studio project.

    Please kindly point me in the right direction

  • Trouble setting up rtmp audio streaming with ffmpeg and nginx

    20 septembre 2021, par igoryonya

    Can't figure out how to set up rtmp streaming with ffmpeg.&#xA;I've been trying to figure it out for about 2 weeks now.&#xA;I need to stream the default sound from my sound card over rtmp stream.&#xA;I don't need a video, only an audio.

    &#xA;

    So, i've installed nginx with rtmp module and added the following code at the end of my "/etc/nginx/nginx.conf" file :

    &#xA;

    rtmp {&#xA;        server {&#xA;                listen 1935;&#xA;                application cam1 {&#xA;                        live on;&#xA;                }&#xA;        }&#xA;}&#xA;

    &#xA;

    restarted my nginx installation :

    &#xA;

    sudo systemctl status nginx.service&#xA;

    &#xA;

    Checked that the 1935 port is listening :

    &#xA;

    ~$ sudo netstat -nlp|egrep -i &#x27;nginx&#x27;&#xA;tcp        0      0 0.0.0.0:1935            0.0.0.0:*               LISTEN      1885931/nginx: mast &#xA;tcp        0      0 0.0.0.0:80              0.0.0.0:*               LISTEN      1885931/nginx: mast &#xA;tcp6       0      0 :::80                   :::*                    LISTEN      1885931/nginx: mast&#xA;

    &#xA;

    Launched an ffmpeg to capture my sound card, encode it into ogg format and stream it to the rtmp server (on the same computer with nginx installed) :

    &#xA;

    ffmpeg -re -f pulse -i default -c:a libvorbis -content_type &#x27;audio/ogg&#x27; -vn -f ogg rtmp://127.0.0.1/cam1/test&#xA;

    &#xA;

    And it looks like, it's streaming, by showing statistics.

    &#xA;

    Then, I try to open it with the vlc player to test the stream and the yellow bar on the progress bar just going back and forth and never starts playing.&#xA;I tried to use vlc on the same computer and on the computer on the same network.

    &#xA;

    Assuming, the computer, that is streaming rtmp has an IP : 192.168.0.1, I use the following connection URL in VLC :

    &#xA;

    rtmp://192.168.0.1/cam1/test&#xA;

    &#xA;