
Recherche avancée
Autres articles (21)
-
Keeping control of your media in your hands
13 avril 2011, parThe vocabulary used on this site and around MediaSPIP in general, aims to avoid reference to Web 2.0 and the companies that profit from media-sharing.
While using MediaSPIP, you are invited to avoid using words like "Brand", "Cloud" and "Market".
MediaSPIP is designed to facilitate the sharing of creative media online, while allowing authors to retain complete control of their work.
MediaSPIP aims to be accessible to as many people as possible and development is based on expanding the (...) -
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 (4192)
-
FFMPEG RTSP stream to Youtube, am i doing everything right ?
5 août 2018, par F O XHello, i’m currently streaming my camera ip to a youtube, almost everything is okey but i just wonder if i’m doing everything right, as you can see at the image with just one stream there are two huge processes running splitted into several smaller once, shouldn’t be just one process running or at least not so many of them ?
Also is my ffmpeg command fine for what i’m doing or should i add/delete something ?
!/bin/bash
DATETIME=
date +%Y%m%d%H%M
DATE=date +%Y%m%d
echo="WE BE RUNNING !"
while :
do
echo
ffmpeg -f lavfi -i anullsrc -rtsp_transport tcp -i rtsp://192.168.1.22:555/11 -tune zerolatency -vcodec libx264 -pix_fmt + -c:v copy -c:a aac -strict experimental -b:v 1000k -maxrate:v 400k -minrate:v 300k -f flv rtmp://YOUTUBE-ID-STREAM
done
EOF
I’m doing it on Ubuntu Mate (16.04) with Raspberry 3 B+
Thanks.
-
FFMPEG upload too fast on youtube
9 juin 2018, par ManYouTrollI want to stream h24 with a linux vps under debian. I used the script that can be found here, which uses ffmpeg. It works perfectly except that I believe the conversion speed is 2x so my YouTube stream is too fast upload but it does not change the speed of playback so it’s not really live.
-
Using FFMPEG to stream my WebCam's video to YouTube
12 mars 2017, par IndesI’ve been trying to use ffmpeg to stream my webcam’s video to YouTube and so far all I’ve managed was an "acknowledgement" from YouTube saying ’Starting’ in green. However it quickly goes gray and the actual stream never actually changes from offline.
I’m using this command to try to stream it :
ffmpeg -rtbufsize 1500M -r 25 -f dshow -s 1280x720 -i video="USB2.0 HD UVC WebCam" -vcodec h264 -b:a 600k -acodec libfaac -ab 128k -f flv "rtmp://a.rtmp.youtube.com/live2/user.useruser.codecodecode"
I’ve managed to stream videos to YouTube with ffmpeg, its just the camera that won’t work. Any idea what I might be doing wrong ?
This is the command I’m using now
ffmpeg -r 18 -f dshow -s 1280x720 -i video="USB2.0 HD UVC WebCam":audio="Microphone (Realtek High Definition Audio)" -vcodec h264 -b:v 1800k -acodec aac -strict experimental -f flv "rtmp://a.rtmp.youtube.com/live2/useruser.useruser.codecodecodecode"
I’m now using
-acodec aac
instead of libfaac or libfdk_aac since I was getting "Unknown encoder" errorsIt is streaming a few seconds however, now I’m getting these errors :
WriteN, RTMP send error 10053Any idea what these mean, or how to fix them ?