
Recherche avancée
Médias (91)
-
Spoon - Revenge !
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
My Morning Jacket - One Big Holiday
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Zap Mama - Wadidyusay ?
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
David Byrne - My Fair Lady
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Beastie Boys - Now Get Busy
15 septembre 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Audio
-
Granite de l’Aber Ildut
9 septembre 2011, par
Mis à jour : Septembre 2011
Langue : français
Type : Texte
Autres articles (83)
-
Des sites réalisés avec MediaSPIP
2 mai 2011, parCette page présente quelques-uns des sites fonctionnant sous MediaSPIP.
Vous pouvez bien entendu ajouter le votre grâce au formulaire en bas de page. -
Le plugin : Podcasts.
14 juillet 2010, parLe problème du podcasting est à nouveau un problème révélateur de la normalisation des transports de données sur Internet.
Deux formats intéressants existent : Celui développé par Apple, très axé sur l’utilisation d’iTunes dont la SPEC est ici ; Le format "Media RSS Module" qui est plus "libre" notamment soutenu par Yahoo et le logiciel Miro ;
Types de fichiers supportés dans les flux
Le format d’Apple n’autorise que les formats suivants dans ses flux : .mp3 audio/mpeg .m4a audio/x-m4a .mp4 (...) -
Organiser par catégorie
17 mai 2013, parDans MédiaSPIP, une rubrique a 2 noms : catégorie et rubrique.
Les différents documents stockés dans MédiaSPIP peuvent être rangés dans différentes catégories. On peut créer une catégorie en cliquant sur "publier une catégorie" dans le menu publier en haut à droite ( après authentification ). Une catégorie peut être rangée dans une autre catégorie aussi ce qui fait qu’on peut construire une arborescence de catégories.
Lors de la publication prochaine d’un document, la nouvelle catégorie créée sera proposée (...)
Sur d’autres sites (6981)
-
Nginx can't record live streaming results for medium resolution
1er juillet 2021, par firman alislamiwhen i finished live streaming, the live streaming result file was not recorded for medium resolution...


rtmp {
server {
 listen 1935;
 chunk_size 4096; 
application live {
 live on;
 exec_push /usr/bin/ffmpeg -re -i rtmp://localhost/live/$name 
 -async 1 -vsync -1
 -c:v libx264 -c:a aac -b:v 200k -b:a 34k -vf "scale=240:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -crf 23 -f flv rtmp://localhost/hls/$name_low
 -c:v libx264 -c:a aac -b:v 300k -b:a 64k -vf "scale=360:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -crf 23 -f flv rtmp://localhost/hls/$name_low360
 -c:v libx264 -c:a aac -b:v 800k -b:a 64k -vf "scale=480:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -crf 23 -f flv rtmp://localhost/hls/$name_low480
 -c:v libx264 -c:a aac -b:v 1800k -b:a 128k -vf "scale=720:trunc(ow/a/2)*2" -tune zerolat#-acodec copy -vcodec copy -f flv rtmp://localhost/hls/$name;
}
application hls {
 live on;
 deny play all;
 hls on;
 hls_fragment 4;
 hls_playlist_length 20;
 hls_path /mnt/hls;
 hls_variant _mid BANDWIDTH=1800000,RESOLUTION=1280x720; 
 hls_variant _low480 BANDWIDTH=80000,RESOLUTION=858x480;
 hls_variant _low360 BANDWIDTH=300000,RESOLUTION=480x360;
 hls_variant _low BANDWIDTH=200000,RESOLUTION=352x240; 
 hls_nested on;
 record all;
 record_path /mnt/record/;
 record_unique on;
 exec_record_done ffmpeg -y -i $path -acodec libmp3lame -ar 44100 -ac 1 -vcodec libx264 $dirname/$basename.mp4;
 }
 }
 



}ency -preset superfast -crf 23 -f flv rtmp ://localhost/hls/$name_mid ;
#-c:v libx264 -c:a aac -b:v 1024k -b:a 128k -vf "scale=1080:trunc(ow/a/2)*2" -tune zerolatency -preset superfast -crf 23 -f flv rtmp ://localhost/hls/$name_high
#-c copy -f flv rtmp ://localhost/hls/$name_src ;


-
FFMPEG multi bitrate wowza live streaming keyframe alignment
27 septembre 2013, par Michael DietriechI tried live streaming with ffmpeg to wowza but even though i use -r 25 -g 50 -keyint_min 50 -sc_threshold 0, the keyframes don't seem to be aligned at the same place of the stream for all the outputs so when Wowza makes chunks for HLS out of it, the keyframes don't get alligned at the beginning of each chunk.
Any suggestions ?
-
Split a live video stream from a webcam with ffmpeg [duplicate]
15 septembre 2020, par guidop21I can show the live streaming of my webcam on the screen with the following command :


ffplay -f dshow -video_size 1280x720 -i "video = Integrated Webcam"



I can also save it in mp4 format in a folder with the following command :


ffmpeg -f dshow -i video = "Integrated Webcam" -f mp4 "C: \ Program Files (x86) \ ffmpeg \ test \ clips \ out% 02d.mp4"



How do I save in the same folder as the 60 second video clips of my live streaming ??
Thanks for your help