Recherche avancée

Médias (1)

Mot : - Tags -/lev manovitch

Autres articles (41)

  • Les autorisations surchargées par les plugins

    27 avril 2010, par

    Mediaspip core
    autoriser_auteur_modifier() afin que les visiteurs soient capables de modifier leurs informations sur la page d’auteurs

  • HTML5 audio and video support

    13 avril 2011, par

    MediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
    The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
    For older browsers the Flowplayer flash fallback is used.
    MediaSPIP allows for media playback on major mobile platforms with the above (...)

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

  • centos FFmpeg when I am using exec_static it shows only 1 minute live stream

    7 janvier 2020, par DAVIT TSILOSANI

    Hello I am using Centos 7 Ngnix RTMP module
    and I am using FFmpeg also

    When I am streaming using console

    Using that command

    ffmpeg -re -i http://website......./index.m3u8 -vcodec libx264
    -vprofile baseline -g 30 -acodec aac -strict -2 -f flv rtmp ://localhost/show/stream5

    Everything is fine,
    stream is broadcasting live

    but when I put it into Ngnix

    such as

    exec_static ffmpeg -re -i website......./index.m3u8 -vcodec libx264
    -vprofile baseline -g 30 -acodec aac -strict -2 -f flv rtmp ://localhost/show/stream5

    It only shows 1 minute live stream after reloading, it starts over and over and over

    Can u tell me what can I do to solve it ?

  • Implementing Live Streaming Webinar Architecture - Need Guidance

    21 septembre 2023, par vishnugpl

    Question : I'm working on a project to implement a live streaming webinar platform, and I'm looking for guidance on the architecture and technologies to use. I have some specific requirements and constraints, and I'd appreciate any advice or pointers on how to get started.

    


    Context :
I'm tasked with building a live streaming webinar platform from scratch for our organization. Here are some key requirements and constraints :

    


      

    1. Live Video Streaming : We need to support live video streaming for
webinars, workshops, and conferences. Low latency is crucial for
real-time interaction between presenters and attendees.

      


    2. 


    3. Scalability : The platform should be able to handle a large number of concurrent attendees, potentially thousands or more,
without compromising performance.

      


    4. 


    5. Security : Security is a top priority. We need to ensure that only authorized users can access the webinars, and we must protect
against unauthorized recording or distribution of the content.

      


    6. 


    7. User Interaction : Attendees should be able to ask questions, participate in polls, and interact with presenters in real-time.

      


    8. 


    9. Recording and Playback : We also want to provide recorded versions of past webinars for on-demand viewing (HLS).

      


    10. 


    


    Current Tech Stack :

    


      

    • Frontend : React
    • 


    • Backend : Node.js with Express
    • 


    • Database : MongoDB
    • 


    • Cloud Hosting : AWS
    • 


    


    Questions :

    


      

    • What technologies or services are best suited for handling live video streaming with low latency ?

      


    • 


    • How can I ensure scalability in terms of both video streaming and handling a large number of users ?

      


    • 


    • What security measures should I consider to protect the content and user data ?

      


    • 


    • Are there any recommended frameworks or libraries for building interactive features like real-time chat and polling ?

      


    • 


    • What's the best approach for recording and serving on-demand webinar content ?

      


    • 


    


    Additional Information :

    


      

    • Budget is a consideration, so cost-effective solutions are preferred.

      


    • 


    • Any open-source or third-party tools that can simplify development are welcome.

      


    • 


    • I have experience with AWS, but I'm open to other cloud providers if they offer advantages for this project.

      


    • 


    


  • Passing FFmpeg encoder output to live 555 media server

    23 septembre 2013, par Ashutosh

    I need help on transmitting encoded output from encoder video output to live 555 media server.

       ret=avcodec_encode_video2(c,&pkt,(AVFrame*)&sc_dst_data,&gotim);
       source=ByteStreamMemoryBufferSource::createNew(*env,pkt.data,ret);
       if (source == NULL){}
       videoES = source;
       video_source=H264VideoStreamFramer::createNew(*env,videoES);
       video_sink->startPlaying(*video_source,afterPlaying, video_sink);

    The above codes doesn't transmit the streams properly.it breaks.any insights on how to do for a proper streaming in ffmpeg ?
    Please help.