
Recherche avancée
Autres articles (78)
-
Demande de création d’un canal
12 mars 2010, parEn fonction de la configuration de la plateforme, l’utilisateur peu avoir à sa disposition deux méthodes différentes de demande de création de canal. La première est au moment de son inscription, la seconde, après son inscription en remplissant un formulaire de demande.
Les deux manières demandent les mêmes choses fonctionnent à peu près de la même manière, le futur utilisateur doit remplir une série de champ de formulaire permettant tout d’abord aux administrateurs d’avoir des informations quant à (...) -
Gestion de la ferme
2 mars 2010, parLa ferme est gérée dans son ensemble par des "super admins".
Certains réglages peuvent être fais afin de réguler les besoins des différents canaux.
Dans un premier temps il utilise le plugin "Gestion de mutualisation" -
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 (15582)
-
How to use ffmpeg without root access
6 octobre 2016, par Charlie227I’ve successfully installed ffmpeg using ssh, as root, on my dedicated server (CentOS 7).
ffmpeg works fine - but now I need to use it without root access.When i try to use ffmpeg without root access, I get the following error :
ffmpeg: error while loading shared libraries: libx264.so.148:
cannot open shared object file: No such file or directoryThe final goal is to be able to use ffmpeg inside my PHP scripts which do not root access.
Any help is appreciated.
-
how to parse Access Unit in h.264
24 septembre 2014, par user2406774I am working in a project that needs to cut some
Access units
inH.264
raw elementary stream,for example remove 4 access units and play the remaining video .For this I took
Access unit Delimiter
(NAL Unit Type:9
) as boundary forAccess Unit
and cut the video but the video ended with packet loss. But if I tookSequence parameter set
(NAL Unit type :7
) as boundary, resultant video playing without any packet loss.
Some one please help me how to solve this issue : where shall I cut the video ? -
Nginx allow only my domain to access a video url
4 septembre 2019, par Bruno Fi’m setting up a web server that contains live video streaming embed into the html5 video tag. My workflow is to grab the rtsp video from an ip camera, decode it to a HLS format using ffmpeg and send the video to my server.
Nginx allows access to the video through a url, which I put in my video tag as a source.Everything works perfectly, the only problem is that anyone can access the URL of the video and put that URL on their website without my permission.
Is there any way to only allow my domain to access, and block for example www.domain2.com to put it into their video tag or other framework thath they use ? i’m think Nginx can do the job maybe.
Here are the codes of Nginx and my html in case is needed.
HTML :
<video class="video-js vjs-default-skin vjs-big-play-centered vjs-fluid" controls="controls" preload="none">
<source src="//mydomain.com/live/stream.m3u8" type="application/x-mpegURL"></source>
</video>Nginx :
location /live {
types {
application/vnd.apple.mpegurl m3u8;
}
limit_conn addr 5;
alias /home/stream;
add_header Cache-Control no-cache;
add_header 'Access-Control-Allow-Origin' '*';
}Many thanks guys !