
Recherche avancée
Médias (1)
-
SWFUpload Process
6 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (99)
-
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
La file d’attente de SPIPmotion
28 novembre 2010, parUne file d’attente stockée dans la base de donnée
Lors de son installation, SPIPmotion crée une nouvelle table dans la base de donnée intitulée spip_spipmotion_attentes.
Cette nouvelle table est constituée des champs suivants : id_spipmotion_attente, l’identifiant numérique unique de la tâche à traiter ; id_document, l’identifiant numérique du document original à encoder ; id_objet l’identifiant unique de l’objet auquel le document encodé devra être attaché automatiquement ; objet, le type d’objet auquel (...) -
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela.
Sur d’autres sites (11568)
-
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/;
 } 
 }
}



-
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 ?
-
Transcode video using the output format of another video in ffmpeg [closed]
8 février 2013, par NickI would like to convert videos to the same format as an arbitrary file. This format is not fixed. This "template" file should not be modified.
Rather than setting the command line options manually each time, is there a way to specify one video as the input, another video as the output format, and then output all that to another file ?
I don't see anything in the docs about this, but maybe I'm searching using the wrong terms. I'm using OS X, but can use any of the GNU tools as well.