
Recherche avancée
Médias (1)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (110)
-
Encoding and processing into web-friendly formats
13 avril 2011, parMediaSPIP automatically converts uploaded files to internet-compatible formats.
Video files are encoded in MP4, Ogv and WebM (supported by HTML5) and MP4 (supported by Flash).
Audio files are encoded in MP3 and Ogg (supported by HTML5) and MP3 (supported by Flash).
Where possible, text is analyzed in order to retrieve the data needed for search engine detection, and then exported as a series of image files.
All uploaded files are stored online in their original format, so you can (...) -
Formulaire personnalisable
21 juin 2013, parCette page présente les champs disponibles dans le formulaire de publication d’un média et il indique les différents champs qu’on peut ajouter. Formulaire de création d’un Media
Dans le cas d’un document de type média, les champs proposés par défaut sont : Texte Activer/Désactiver le forum ( on peut désactiver l’invite au commentaire pour chaque article ) Licence Ajout/suppression d’auteurs Tags
On peut modifier ce formulaire dans la partie :
Administration > Configuration des masques de formulaire. (...) -
Qu’est ce qu’un masque de formulaire
13 juin 2013, parUn masque de formulaire consiste en la personnalisation du formulaire de mise en ligne des médias, rubriques, actualités, éditoriaux et liens vers des sites.
Chaque formulaire de publication d’objet peut donc être personnalisé.
Pour accéder à la personnalisation des champs de formulaires, il est nécessaire d’aller dans l’administration de votre MediaSPIP puis de sélectionner "Configuration des masques de formulaires".
Sélectionnez ensuite le formulaire à modifier en cliquant sur sont type d’objet. (...)
Sur d’autres sites (5405)
-
nginx ffmpeg mpegts http
6 mars 2024, par micheli can't understand how to serve .ts files from nginx.
for hls it works without problems (m3u8).



http://127.0.0.1/hls/stream_name.m3u8






I tried to compile nginx with the 2 modules :



nginx-live-module



nginx-ts-module



It works in part, if I send a stream it works, if I send for example 10 it doesn't work.



ffmpeg -re -f concat -safe 0 -i stream.txt -c copy -map 0 -f mpegts "http://127.0.0.1/stream_name?buffer_size=1048576"



with VLC I open the stream and it works but if I try to open more streams it doesn't open even if ffmpeg is sending to the nginx server.



what am I doing wrong ?



user www;
worker_processes auto;
worker_rlimit_nofile 300000;
events {
 worker_connections 16000;
 use epoll;
 accept_mutex on;
 multi_accept on;
}

error_log logs/error.log notice;

http {
 live_zone zone=foo:100m;

 server {
 listen 8080;

 location / {
 live foo;
 live_methods GET POST;

 # enable endless request body
 client_max_body_size 0m;
 }
 }

}




-
http: never send ’Cookie : (null)’ to the server
21 mars 2014, par wm4http: never send ’Cookie : (null)’ to the server
If a domain has some cookies set, but matching the cookie fails due to
the port being different, get_cookies() succeeds, but sets cookies to
NULL. The caller of get_cookies() didn’t check for the NULL value.This also avoids passing NULL to libc string functions, which is
undefined behaviorFixes Ticket2180
Signed-off-by : Michael Niedermayer <michaelni@gmx.at>
-
libavformat/http: Ignore expired cookies
30 avril 2017, par Micah Galizia