
Recherche avancée
Médias (2)
-
Rennes Emotion Map 2010-11
19 octobre 2011, par
Mis à jour : Juillet 2013
Langue : français
Type : Texte
-
Carte de Schillerkiez
13 mai 2011, par
Mis à jour : Septembre 2011
Langue : English
Type : Texte
Autres articles (96)
-
MediaSPIP 0.1 Beta version
25 avril 2011, parMediaSPIP 0.1 beta is the first version of MediaSPIP proclaimed as "usable".
The zip file provided here only contains the sources of MediaSPIP in its standalone version.
To get a working installation, you must manually install all-software dependencies on the server.
If you want to use this archive for an installation in "farm mode", you will also need to proceed to other manual (...) -
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 (...) -
ANNEXE : Les plugins utilisés spécifiquement pour la ferme
5 mars 2010, parLe site central/maître de la ferme a besoin d’utiliser plusieurs plugins supplémentaires vis à vis des canaux pour son bon fonctionnement. le plugin Gestion de la mutualisation ; le plugin inscription3 pour gérer les inscriptions et les demandes de création d’instance de mutualisation dès l’inscription des utilisateurs ; le plugin verifier qui fournit une API de vérification des champs (utilisé par inscription3) ; le plugin champs extras v2 nécessité par inscription3 (...)
Sur d’autres sites (5794)
-
Revision 33863 : gerer des socialtags en les conditionnant au fait que le visiteur provient ...
20 décembre 2009, par fil@… — Loggerer des socialtags en les conditionnant au fait que le visiteur provient du site en question (facebook) ; gerer un badge facebook
la doc arrive sur spip-contrib -
Revision 38603 : [Experimental] des Big_pipes dans Zpip : define(’_Z_BIGPIPE’,true) ; ...
5 juin 2010, par cedric@… — Log[Experimental] des Big_pipes dans Zpip : define(’_Z_BIGPIPE’,true) ; http://www.facebook.com/notes/facebook-engineering/bigpipe-pipelining-web-pages-for-high-performance/389414033919
-
FFMPEG HLS Live Stream to RTMP. How to signal end of stream
4 août 2021, par Andre EscuderoI'm taking a HLS m3u8 live stream as input and sending to RTMP (facebook RTMP)


ffmpeg -i https://mylivestream.m3u8 -acodec copy -vcodec copy -f flv rtmps://facebookrtmp/key



Now when the HLS m3u8 live stream stops updating( no new segments being added) FFMPEG stops sending data to facebook rtmp. But Facebook does not end the stream because I think ffmpeg is not sending the deleteStream command it just disconnects. Ending the ffmpeg process at this point also does not end the stream. It only ends the stream if the process is ended while they are still new segments.


Is there anyway to send deleteStream when HLS is over ?