
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
Autres articles (41)
-
Support de tous types de médias
10 avril 2011Contrairement à beaucoup de logiciels et autres plate-formes modernes de partage de documents, MediaSPIP a l’ambition de gérer un maximum de formats de documents différents qu’ils soient de type : images (png, gif, jpg, bmp et autres...) ; audio (MP3, Ogg, Wav et autres...) ; vidéo (Avi, MP4, Ogv, mpg, mov, wmv et autres...) ; contenu textuel, code ou autres (open office, microsoft office (tableur, présentation), web (html, css), LaTeX, Google Earth) (...)
-
HTML5 audio and video support
13 avril 2011, parMediaSPIP uses HTML5 video and audio tags to play multimedia files, taking advantage of the latest W3C innovations supported by modern browsers.
The MediaSPIP player used has been created specifically for MediaSPIP and can be easily adapted to fit in with a specific theme.
For older browsers the Flowplayer flash fallback is used.
MediaSPIP allows for media playback on major mobile platforms with the above (...) -
Support audio et vidéo HTML5
10 avril 2011MediaSPIP utilise les balises HTML5 video et audio pour la lecture de documents multimedia en profitant des dernières innovations du W3C supportées par les navigateurs modernes.
Pour les navigateurs plus anciens, le lecteur flash Flowplayer est utilisé.
Le lecteur HTML5 utilisé a été spécifiquement créé pour MediaSPIP : il est complètement modifiable graphiquement pour correspondre à un thème choisi.
Ces technologies permettent de distribuer vidéo et son à la fois sur des ordinateurs conventionnels (...)
Sur d’autres sites (11424)
-
Use dynamic filter/overlay ffmpeg for RTMP LiveStream
18 décembre 2017, par NBSI have to do a livestream using ffmpeg, but I have trouble changing overlays or mute at runtime. And if it is possible to stop and re-stream to the same rtmp channel. So the stream can continue.
Once the ffmpeg command is set, it cannot be edited. In that case, overlays won’t be changed or removed. Unless the ffmpeg cmd reads from a temp location/file, when to apply overlay or mute options. Is it possible to write something like that, and do we have a sample where I can start ?
The powershell script comes to mind, which can read the values from temp location and ffmpeg simply reflects the value ?
Any pointers would help.
-
How to enable site on ngnix to restream
19 mars 2020, par Nk nk nki use rtmp+nginx to restream the channels with ffmpeg.
The streaming is enabled for subdomain for example
[hls.tvoti.com][1]
but not for the main domain[tvoti.com][1]
In Nginx site-enabled path i have mentioned that the main domain must be enabled but it doesn’t stream. Here is the config :
server {
listen 80;
#root /var/www/html/;
#index index.php index.html index.htm;
server_name tvoti.com;
location / {
proxy_redirect off;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8080;
}
location ~ /\.ht {
deny all;
}
}
server {
listen 80;
server_name hls.tvoti.com;
location / {
add_header Cache-Control no-cache;
# Simple requests
if ($request_method ~* "(GET|POST)") {
add_header "Access-Control-Allow-Origin" "http://tvoti.com";
}
# Preflighted requests
if ($request_method = OPTIONS ) {
add_header "Access-Control-Allow-Origin" "http://tvoti.com";
add_header "Access-Control-Allow-Methods" "GET, POST, OPTIONS, HEAD";
add_header "Access-Control-Allow-Headers" "Authorization, Origin, X-Requested-With, Content-Type, Accept";
return 200;
}
root /etc/nginx/hls;
}
location /supervisor {
proxy_pass http://127.0.0.1:9999/;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
} -
FFMPEG to remote server : Live streaming with segments [migrated]
10 août 2013, par BrianjsI have looked around and have found many good articles on how to use ffmpeg to segment live video for HLS streaming. However, I need to be able to use use an encoder from a remote location (that is receiving live video), and then somehow send these segmented files and the m3u8/ts files to a web server in a different location, in real time.
So :
REMOTE COMPUTER(camera->ffmpeg->segmenter) -> WEBSERVER(receives files -> users connect for "live" stream)My question is : Has anyone seen something similar to this ? Or is there a setting on ffmpeg/ffserver that will let me do this ?