
Recherche avancée
Médias (1)
-
Collections - Formulaire de création rapide
19 février 2013, par
Mis à jour : Février 2013
Langue : français
Type : Image
Autres articles (100)
-
Publier sur MédiaSpip
13 juin 2013Puis-je poster des contenus à partir d’une tablette Ipad ?
Oui, si votre Médiaspip installé est à la version 0.2 ou supérieure. Contacter au besoin l’administrateur de votre MédiaSpip pour le savoir -
Other interesting software
13 avril 2011, parWe don’t claim to be the only ones doing what we do ... and especially not to assert claims to be the best either ... What we do, we just try to do it well and getting better ...
The following list represents softwares that tend to be more or less as MediaSPIP or that MediaSPIP tries more or less to do the same, whatever ...
We don’t know them, we didn’t try them, but you can take a peek.
Videopress
Website : http://videopress.com/
License : GNU/GPL v2
Source code : (...) -
À propos des documents
21 juin 2013, parQue faire quand un document ne passe pas en traitement, dont le rendu ne correspond pas aux attentes ?
Document bloqué en file d’attente ?
Voici une liste d’actions ordonnée et empirique possible pour tenter de débloquer la situation : Relancer le traitement du document qui ne passe pas Retenter l’insertion du document sur le site MédiaSPIP Dans le cas d’un média de type video ou audio, retravailler le média produit à l’aide d’un éditeur ou un transcodeur. Convertir le document dans un format (...)
Sur d’autres sites (8107)
-
http: Return meaningful error codes
10 mars 2014, par Luca Barbato -
Trigger exec_pull on http connection
29 octobre 2019, par M. ColeIs it possible to trigger
exec_pull
on http connection ? For example, I have the following Nginx configuration :server {
listen 80;
location /hls {
types {
application/vnd.apple.mpegurl m3u8;
video/mp2t ts;
}
root /mnt;
add_header Cache-Control no-cache;
index index.m3u8 index.ts;
add_header Access-Control-Allow-Origin *;
}
}
}
rtmp {
server {
listen 1935;
allow play all;
application hls {
live on;
exec_options on;
exec_pull /usr/bin/ffmpeg -re -i http://example.com:333/293.m3u8 -c copy -f flv rtmp://localhost:1935/hls/$name;
}
application hls {
live on;
hls on;
hls_path /mnt/hls;
hls_fragment 3s;
}
}
}I would like to have an
exec_pull
triggered on HLS http request.
For example If I request http://my-serverip.com/hls/293.m3u8 then it should start ffmpeg to start creatinghls
files.I’ve been working on this for 5-6 days and could not figure out how to trigger
exec_pull
on http requests. -
ffserver : reorder HTTP fwd decls
15 février 2015, par Reynaldo H. Verdejo Pinochet