
Recherche avancée
Autres articles (46)
-
Mise à jour de la version 0.1 vers 0.2
24 juin 2013, parExplications des différents changements notables lors du passage de la version 0.1 de MediaSPIP à la version 0.3. Quelles sont les nouveautés
Au niveau des dépendances logicielles Utilisation des dernières versions de FFMpeg (>= v1.2.1) ; Installation des dépendances pour Smush ; Installation de MediaInfo et FFprobe pour la récupération des métadonnées ; On n’utilise plus ffmpeg2theora ; On n’installe plus flvtool2 au profit de flvtool++ ; On n’installe plus ffmpeg-php qui n’est plus maintenu au (...) -
Personnaliser en ajoutant son logo, sa bannière ou son image de fond
5 septembre 2013, parCertains thèmes prennent en compte trois éléments de personnalisation : l’ajout d’un logo ; l’ajout d’une bannière l’ajout d’une image de fond ;
-
Soumettre améliorations et plugins supplémentaires
10 avril 2011Si vous avez développé une nouvelle extension permettant d’ajouter une ou plusieurs fonctionnalités utiles à MediaSPIP, faites le nous savoir et son intégration dans la distribution officielle sera envisagée.
Vous pouvez utiliser la liste de discussion de développement afin de le faire savoir ou demander de l’aide quant à la réalisation de ce plugin. MediaSPIP étant basé sur SPIP, il est également possible d’utiliser le liste de discussion SPIP-zone de SPIP pour (...)
Sur d’autres sites (9271)
-
Livestream doesn't start unless I open the YouTube Live Dashboard [closed]
20 mars 2024, par Gavin TrujilloI have a camera feed that streams 24/7 on YouTube. Everything works fine, except the stream often goes down due to internet reliability issues. I can detect that the stream is down with the v3/search endpoint, then an automated command is sent from my server to restart it, but the stream doesn't start like it should.


I've discovered that the live stream will only start if I open the YouTube Live Dashboard first.
Before opening the dashboard, my streaming software will upload data using the stream key, but there's no live stream. Upon opening the YouTube Live Dashboard, it shows "Good Connection" but with no video feed. My automation script is continuously restarting the stream, so it comes up very shortly after opening the dashboard every time.


Streaming software : I use ffmpeg to translate an RTSP stream directly to YouTube.


ffmpeg -rtsp_transport tcp -re -i "rtsp://$cameraLink" -f lavfi -i anullsrc=channel_layout=stereo:sample_rate=44100 -force_key_frames "expr:gte(t,n_forced*2)" -nostdin -f flv -map 0:v:0 -map 1:a:0 -c:v libx264 -preset ultrafast -crf 43 -s 1280x724 -r 30 -c:a aac "rtmp://a.rtmp.youtube.com/live2/$streamKey"



Since entering into the YouTube Live Dashboard seems to start some sort of "active state", I've tried various Oauth2 and key API methods to start the live stream. I haven't gotten anything to work so far.


-
avfilter/af_silenceremove : use duration option for window option
7 septembre 2021, par Paul B Mahol -
ffmpeg Unrecognized option...Error splitting the argument list : Option not found
13 juillet 2013, par Ian ZaneThis is probably a pretty simple question for those of you who use ffmpeg, but I'm very new at it, and I'm using it on Windows, which apparently isn't the norm.
From cmd, with my environment variable set at my ffmpeg install directory, I'm running
ffmpeg -i C:\Users\Me\Videos\InputVideo.wmv
-vcodec libx264 -acodec aacenc C:\Users\Me\Desktop\OutputVideo.mp4(My actual script doesn't have a line break, I just put that there to make reading easier)
and ffmpeg is throwing
Unrecognized option 'i C:\Users\Me\Videos\InputVideo.wmv
-vcodec libx264 -acodec aacenc C:\Users\Me\Desktop\OutputVideo.mp4'.
Error splitting the argument list: Option not found.Is something wrong with my script ? Am I calling an encoder that isn't currently on my machine ? Is it something to do with the file paths ?
Thanks for the help, everyone.