
Recherche avancée
Autres articles (85)
-
Multilang : améliorer l’interface pour les blocs multilingues
18 février 2011, parMultilang est un plugin supplémentaire qui n’est pas activé par défaut lors de l’initialisation de MediaSPIP.
Après son activation, une préconfiguration est mise en place automatiquement par MediaSPIP init permettant à la nouvelle fonctionnalité d’être automatiquement opérationnelle. Il n’est donc pas obligatoire de passer par une étape de configuration pour cela. -
Installation en mode ferme
4 février 2011, parLe mode ferme permet d’héberger plusieurs sites de type MediaSPIP en n’installant qu’une seule fois son noyau fonctionnel.
C’est la méthode que nous utilisons sur cette même plateforme.
L’utilisation en mode ferme nécessite de connaïtre un peu le mécanisme de SPIP contrairement à la version standalone qui ne nécessite pas réellement de connaissances spécifique puisque l’espace privé habituel de SPIP n’est plus utilisé.
Dans un premier temps, vous devez avoir installé les mêmes fichiers que l’installation (...) -
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
Sur d’autres sites (6498)
-
Grab sound from a youtube stream and restream on Twitch
22 mai 2021, par Mangakuhttps://chillhop.com/ is sharing "stream-safe" musics (as far you share in your twitch bio taht the sound come from them).


They have a Youtube channel : https://www.youtube.com/channel/UCOxqgCwgOqC2lMqC5PYz_Dg
where they have a non stop stream live music.


I'd like to grab this sound and reshare it with my twitch channel.
for now my script look like

ffmpeg -nostdin -re -stream_loop -1 -i /home/ffmpeg/TFCv2.mp4 -stream_loop -1 -i /home/ffmpeg/upbeat.m4a -c:v libx264 -preset veryfast -b:v 3000k -maxrate 3000k -bufsize:v:0 4500k -f flv rtmp://cdg.contribute.live-video.net/app


Guess i have to use youtube-dl to get the sound from youtube live and grab it on ffmpeg. But... i dont understand how that works.
Any help ?


-
Youtube Live streaming using ffmpeg container webm
18 décembre 2017, par P AkhtarI want to stream youtube live using webm container vp8 codec but enable to done using code or command.
ffmpeg -i E:/Video/Waka.mp4 -g 48 -f webm -vcodec libvpx-vp9 rtmp://youtube live url
its work fine with flv
-
Stream Live IP cam to Youtube on FFMPEG
24 juillet 2018, par Håkon BerntsenI`m streaming 2 IP cams (live webcam for tourists) from 2 Raspberry Pi, using FFMPEG (version 3.4.2) to YouTube. IPcam no.1 and Raspberry no.1 fails once a month or so, and that issue is solved with a Cron job that restarts the scripts if the service is not running.
The stream from IPcam no.2 fail after 1 hour to maybe 24 hours, even though its the same FFMPEG command and same setup.
FFMPEG keep streaming and the service is running on the Raspberry. YouTube stop receiving the stream, but there is no logs to be found at YouTube.The bandwidth is not an issue (fiber), and the cameras are both connect with Cat5 cable. The only way to restart the stream (so YouTube restart the stream) is to restart the service (since its an cronjob that restart the service only if the service is no longer running, I`m forced to do a pkill). I have also tried to set up another cron job that kills the service every 15 minutes, but its not really an elegant solution.
Both cameras streams H264.
Stream no.2 can be seen here : https://www.youtube.com/embed/live_stream?channel=UCEJJjA5IsjE0JjuiqfxZFaw
The command I`m using is :
COMMAND="sudo ffmpeg -f lavfi -i anullsrc -thread_queue_size 512 -rtsp_transport tcp -i ${RTSP_URL} -vcodec libx264 -pix_fmt + -c:v copy -c:a aac -f flv ${YOUTUBE_URL}/${YOUTUBE_KEY}"
I hope there is someone that can help with ideas to the command or to why the stream fail.