
Recherche avancée
Autres articles (59)
-
Initialisation de MediaSPIP (préconfiguration)
20 février 2010, parLors de l’installation de MediaSPIP, celui-ci est préconfiguré pour les usages les plus fréquents.
Cette préconfiguration est réalisée par un plugin activé par défaut et non désactivable appelé MediaSPIP Init.
Ce plugin sert à préconfigurer de manière correcte chaque instance de MediaSPIP. Il doit donc être placé dans le dossier plugins-dist/ du site ou de la ferme pour être installé par défaut avant de pouvoir utiliser le site.
Dans un premier temps il active ou désactive des options de SPIP qui ne le (...) -
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
(Dés)Activation de fonctionnalités (plugins)
18 février 2011, parPour gérer l’ajout et la suppression de fonctionnalités supplémentaires (ou plugins), MediaSPIP utilise à partir de la version 0.2 SVP.
SVP permet l’activation facile de plugins depuis l’espace de configuration de MediaSPIP.
Pour y accéder, il suffit de se rendre dans l’espace de configuration puis de se rendre sur la page "Gestion des plugins".
MediaSPIP est fourni par défaut avec l’ensemble des plugins dits "compatibles", ils ont été testés et intégrés afin de fonctionner parfaitement avec chaque (...)
Sur d’autres sites (6470)
-
Passing FFmpeg encoder output to live 555 media server
23 septembre 2013, par AshutoshI 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. -
Implementing Live Streaming Webinar Architecture - Need Guidance
21 septembre 2023, par vishnugplQuestion : 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 :


- 

-
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.


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


-
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.


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


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














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.










-
-
centos FFmpeg when I am using exec_static it shows only 1 minute live stream
7 janvier 2020, par DAVIT TSILOSANIHello I am using Centos 7 Ngnix RTMP module
and I am using FFmpeg alsoWhen 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/stream5Everything is fine,
stream is broadcasting livebut 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/stream5It 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 ?