
Recherche avancée
Médias (1)
-
Revolution of Open-source and film making towards open film making
6 octobre 2011, par
Mis à jour : Juillet 2013
Langue : English
Type : Texte
Autres articles (104)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
Les vidéos
21 avril 2011, parComme les documents de type "audio", Mediaspip affiche dans la mesure du possible les vidéos grâce à la balise html5 .
Un des inconvénients de cette balise est qu’elle n’est pas reconnue correctement par certains navigateurs (Internet Explorer pour ne pas le nommer) et que chaque navigateur ne gère en natif que certains formats de vidéos.
Son avantage principal quant à lui est de bénéficier de la prise en charge native de vidéos dans les navigateur et donc de se passer de l’utilisation de Flash et (...) -
Participer à sa traduction
10 avril 2011Vous pouvez nous aider à améliorer les locutions utilisées dans le logiciel ou à traduire celui-ci dans n’importe qu’elle nouvelle langue permettant sa diffusion à de nouvelles communautés linguistiques.
Pour ce faire, on utilise l’interface de traduction de SPIP où l’ensemble des modules de langue de MediaSPIP sont à disposition. ll vous suffit de vous inscrire sur la liste de discussion des traducteurs pour demander plus d’informations.
Actuellement MediaSPIP n’est disponible qu’en français et (...)
Sur d’autres sites (9164)
-
Anomalie #3910 : URL mal formaté dans le mail pour "Mot de passe oublié"
7 mars 2017, par Vincent LegeardC’était il y a 4 mois, il sait passé pleins d’événement entre temps ;)
On peut fermer.
-
Anomalie #4075 : Mail du privé envoyés aux auteurs des messages proposés dans le public si article...
15 janvier 2018, par b bEt sans plugin ?
-
nginx ffmpeg hls streaming filling up my hard drive
19 avril 2020, par stefkiI am using nginx and ffmpeg on my windows 10 machine. Everything works ok, but my hard drive keep filling up .
These are my command lines



ffmpeg -i "http://192.168.1.2:9566/history/" -copytb 1 -filter_complex "[0:v][0:s:1]overlay[v];[v]pp=fd,scale=720:-1[y]" -map [y] -map 0:1 -s 720x576 -pix_fmt yuv420p -b:v 1800k -maxrate 2000k -bufsize 3000k -c:v libx264 -strict 2 -profile:v "main" -preset superfast -acodec aac -ac 2 -ar 44100 -ab 128k -vsync 1 -async 1 -f hls -hls_time 5 -hls_list_size 6 -segment_wrap 10 -hls_flags delete_segments "D:\media\hls\history.m3u"




The HLS segments goes to D :\media\hls
This drive D : is ok, it's not filling up.



But the C :\ partition is filling up all the time.



the ffmpeg.exe is executed from Folder :
C :\Users\Stefki\Desktop\ffmpeg-latest-win64-static (1)\ffmpeg-latest-win64-static\bin



VLC play link http://192.168.2.254/hls/history.m3u OK



Thank you to all, I hope any experienced dev can help me :)



This is my nginx config file



worker_processes 1 ;



events {
 worker_connections 1024;
}


http {
 include mime.types;
 default_type application/octet-stream;

 #log_format main '$remote_addr - $remote_user [$time_local] "$request" '
 # '$status $body_bytes_sent "$http_referer" '
 # '"$http_user_agent" "$http_x_forwarded_for"';

 #access_log logs/access.log main;

 sendfile on;
 #tcp_nopush on;

 #keepalive_timeout 0;
 keepalive_timeout 65;

 #gzip on;

 server {
 listen 80;
 server_name localhost;

 #charset koi8-r;

 #access_log logs/host.access.log main;

 location / {
 root html;
 index index.html index.htm;
 }
 location /hls {
 types {
 application/vnd.apple.mpegurl m3u8;
 video/mp2t ts;
 }
 root D:/media;
 add_header Cache-Control no-cache;
 }