
Recherche avancée
Autres articles (68)
-
Websites made with MediaSPIP
2 mai 2011, parThis page lists some websites based on MediaSPIP.
-
Creating farms of unique websites
13 avril 2011, parMediaSPIP 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" (...) -
Les tâches Cron régulières de la ferme
1er décembre 2010, parLa gestion de la ferme passe par l’exécution à intervalle régulier de plusieurs tâches répétitives dites Cron.
Le super Cron (gestion_mutu_super_cron)
Cette tâche, planifiée chaque minute, a pour simple effet d’appeler le Cron de l’ensemble des instances de la mutualisation régulièrement. Couplée avec un Cron système sur le site central de la mutualisation, cela permet de simplement générer des visites régulières sur les différents sites et éviter que les tâches des sites peu visités soient trop (...)
Sur d’autres sites (9365)
-
Révision 18117 : mieux respecter le nombre de fichiers donnes en limite pour la suppression
22 juin 2011, par cedric - -
Add headers to mpegts.js request
8 avril 2023, par Alex DalenI'm very new in web technologies. I have a .ts video accessed by my api and for security reason I need to add 'x-access-token' to my request, but really do not how. Maybe you know ?


play(){
 if (mpegts.getFeatureList().mseLivePlayback) {
 var videoElement = document.getElementById('video-js-node');
 var player = mpegts.createPlayer({
 type: 'm2ts',
 isLive: true,
 headers: {'x-access-token': localStorage.getItem('data')},
 url: `/my/api/${record}`,
 });
 player.attachMediaElement(videoElement);
 player.load();
 player.play();
 }
}



-
MVC RTSP forwarding request
27 octobre 2015, par Benny ChenI’d like to restream my rtsp ip camera to be accessible from outside by make request to my web server. I have play around using ffserver and ffmpeg. But it always gave me about 10 seconds of latency on whatever setting. I have tried -fflags nobuffer, playing the value of probesize and analyzeduration, add zerolatency, etc. So I gave up using ffserver to be used as restreaming server.
If there is no restreaming, just using the ffmpeg to output to a file or view, it gaves low latency below 1 sec.
Now I am thinking to let the client to have indirect access to the camera to eliminate using restreaming server. My question is, how to forward a rtsp request coming to my server to my ip camera. My web server has 2 network interface. One for internal, which the ip camera connected, and the other for public access. I’d like to keep my ip camera keep private in internal network/not exposed to the internet. So I would like to forward incoming rtsp request to my ip camera.
I work in MVC and IIS 7.5