Recherche avancée

Médias (1)

Mot : - Tags -/pirate bay

Autres articles (31)

  • Des sites réalisés avec MediaSPIP

    2 mai 2011, par

    Cette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
    Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page.

  • 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

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

  • FFMpeg live stream with C++

    21 août 2015, par cahbs
    #include
    extern “C” {
    #include “libavformat\avformat.h”
    #include “libavdevice\avdevice.h”
    }
    int main(int argc, char **argv)
    {
     av_register_all();
     avcodec_register_all();
     avdevice_register_all();
     avformat_network_init();
     AvFormatContex *pFormatContex;
     pFormatContext = format_alloc_context();
     AvInputFormat * a = av_find_input_format(“dshow”);
     av_format_open_input(&pFormatCtx, “video””HP Webcam [2 MP Fixed]”””,a,NULL);
    }

    This code is the access web cam.
    I want to live stream on web cam in C++. I can’t get web cam video on web cam.

  • The YouTube live stream encountered a failure

    12 février 2024, par kuldeep chopra

    We are currently utilizing the ffmpeg library for streaming on YouTube Live. However, we have faced issues in a recent live streaming session that initially functioned correctly but encountered errors around the 13 to 15-minute mark. The error logs from FFmpeg during this session are as follows :

    


    Live Stream 1 Error :(Attempt 1)

    


    


    ffmpeg [flv @ 0x555c4bdfe680] Failed to update header with correct
duration. 2023-09-07T23:06:38.490+05:30 [flv @ 0x555c4bdfe680] Failed
to update header with correct filesize. 2023-09-07T23:06:38.491+05:30
failed => rtmp ://a.rtmp.youtube.com/live2/key......
2023-09-07T23:06:38.491+05:30
ffmpeg [tee @ 0x555c48843700] Slave
muxer #1 failed : Broken pipe, continuing with 1/2 slaves.

    


    


    Live Stream 2 Error (Attempt 2) :

    


    


    Slave muxer #1 failed : Connection reset by peer, continuing with 1/2
slaves.

    


    


    It is crucial to note that we have conducted numerous live streams on YouTube without encountering this error previously ; this is the first instance of such an issue.

    


    We kindly request your assistance in investigating and providing insights into the underlying problem causing these error messages. Any guidance or support you can offer in resolving this issue would be greatly appreciated.

    


  • Streaming live video from Windows to Android with FFmpeg

    29 avril 2018, par Alan Daniels

    I am capturing live video on a Windows PC and encoding it with FFmpeg. I can stream the content live to another PC using rtsp://[dest_ip:port]/live.sdp as FFmpeg’s output on the sender and using ffplay -rtsp_flags listen rtsp://[dest_ip:port]/live.sdp on the receiver. However, I have to run FFplay before starting the sender. Also, VLC cannot play the rtsp path :

    main debug: net: connecting to 127.0.0.1 port 5555
    main error: connection failed: Connection refused by peer
    access_realrtsp error: cannot connect to 127.0.0.1:5555
    access_realrtsp debug: could not connect to: 127.0.0.1:5555/live.sdp

    However, FFplay and VLC can play something like ffplay rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov.

    On the Android side, I am using the Media API which can play content from a URI. It works with HTTP and RTSP (as far as I know).

    I’ve looked at FFmpeg’s streaming guide : https://trac.ffmpeg.org/wiki/StreamingGuide, but I am still confused about the difference between my path rtsp://[dest_ip:port]/live.sdp and rtsp://wowzaec2demo.streamlock.net/vod/mp4:BigBuckBunny_115k.mov.

    Do I need a streaming server in order to have my content accessible by URI ? Any recommendations since FFserver is depreciated ?