
Recherche avancée
Autres articles (105)
-
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 ;
-
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 -
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 (...)
Sur d’autres sites (11032)
-
Revision 101595 : class editer-groupe et indentation
9 janvier 2017, par cedric@… — Logclass editer-groupe et indentation
-
Revision 62890 : Des class editer comme partout dans SPIP
23 juin 2012, par kent1@… — LogDes class editer comme partout dans SPIP
-
Reducing the rtmp delay of on iOS MobileVLCKit
9 septembre 2019, par itsaboutcodeI am trying to play
rtmp
stream viaMobileVLCKit
but the delay to connect with stream is 14-20 sec and latency is about 7-10 sec.I am streaming using
ffmpeg
and when I play it usingffplay
, it connect with the stream within 1-2 secs and latency is also 1-2 sec.Just wondering what can be done in
MobileVLCKit
which can reduce connecting and streaming delay ?I am playing the stream via ffmpeg via following command.
ffmpeg -re -i audio.wav -f flv rtmp://xxx.xxx.xxx.xxx:1935/application/stream001
And playing on iOS with following code.
let streamUrl = URL(string: self.url)
let media = VLCMedia(url: "rtmp://xxx.xxx.xxx.xxx:1935/application/stream001")
self.player.media = media
self.player.delegate = self
self.player.drawable = self.view
self.player.play()Thanks.