
Recherche avancée
Médias (1)
-
The Slip - Artworks
26 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (66)
-
List of compatible distributions
26 avril 2011, parThe table below is the list of Linux distributions compatible with the automated installation script of MediaSPIP. Distribution nameVersion nameVersion number Debian Squeeze 6.x.x Debian Weezy 7.x.x Debian Jessie 8.x.x Ubuntu The Precise Pangolin 12.04 LTS Ubuntu The Trusty Tahr 14.04
If you want to help us improve this list, you can provide us access to a machine whose distribution is not mentioned above or send the necessary fixes to add (...) -
MediaSPIP v0.2
21 juin 2013, parMediaSPIP 0.2 est la première version de MediaSPIP stable.
Sa date de sortie officielle est le 21 juin 2013 et est annoncée ici.
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Comme pour la version précédente, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...) -
MediaSPIP version 0.1 Beta
16 avril 2011, parMediaSPIP 0.1 beta est la première version de MediaSPIP décrétée comme "utilisable".
Le fichier zip ici présent contient uniquement les sources de MediaSPIP en version standalone.
Pour avoir une installation fonctionnelle, il est nécessaire d’installer manuellement l’ensemble des dépendances logicielles sur le serveur.
Si vous souhaitez utiliser cette archive pour une installation en mode ferme, il vous faudra également procéder à d’autres modifications (...)
Sur d’autres sites (10090)
-
Libavfilter with ffmpeg - overlay the last X seconds
9 avril 2012, par gphilipLooking at the docs of libavfilter it doesn't seem to be possible, but still, I hope you can help me.
I want to overlay an image to a movie but only for the last X seconds of the movie. I managed to overlay for the full movie, no problem. But can I get a time when the overlay is shown ?
I use ffmpeg with compiled with libavfilter. Any tricks to solve this ?
-
Merge commit ’dd35d451fbc34795a8d19ac6c281bed53c42a29b’
18 août 2014, par Michael NiedermayerMerge commit ’dd35d451fbc34795a8d19ac6c281bed53c42a29b’
* commit ’dd35d451fbc34795a8d19ac6c281bed53c42a29b’ :
doc : Change wrong term to avoid confusionConflicts :
doc/developer.texiNo change, as the wrong term is not part of our docs
Merged-by : Michael Niedermayer <michaelni@gmx.at>
-
Receive HLS stream and rebroadcast
22 septembre 2020, par user9066046I have commercial streaming server that streams via HLS in Europe.


http://europe.server/stream1/index.m3u8


Now my clients in USA having some network issues due to distance.


So I have deployed new server in USA. I'd like it to receive HLS streams from European server and respond to US based customers.


So users can access like


http://usa.server/stream1/index.m3u8


It will be H265/HEVC only so RTMP is not possible. Every tutorial I see on internet is based on RTMP.


I have used following config from https://docs.peer5.com/guides/setting-up-hls-live-streaming-server-using-nginx/ for reference.


worker_processes auto;
events {
 worker_connections 1024;
}

http {
 sendfile off;
 tcp_nopush on;
 aio on;
 directio 512;
 default_type application/octet-stream;
 
 server {
 listen 8080;

 location / {
 # Disable cache
 add_header 'Cache-Control' 'no-cache';
 
 # CORS setup
 add_header 'Access-Control-Allow-Origin' '*' always;
 add_header 'Access-Control-Expose-Headers' 'Content-Length';
 
 # allow CORS preflight requests
 if ($request_method = 'OPTIONS') {
 add_header 'Access-Control-Allow-Origin' '*';
 add_header 'Access-Control-Max-Age' 1728000;
 add_header 'Content-Type' 'text/plain charset=UTF-8';
 add_header 'Content-Length' 0;
 return 204;
 } 
 
 types {
 application/dash+xml mpd;
 application/vnd.apple.mpegurl m3u8;
 video/mp2t ts;
 } 
 
 root /mnt/;
 } 
 }
}