
Recherche avancée
Médias (1)
-
La conservation du net art au musée. Les stratégies à l’œuvre
26 mai 2011
Mis à jour : Juillet 2013
Langue : français
Type : Texte
Autres articles (111)
-
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 -
Script d’installation automatique de MediaSPIP
25 avril 2011, parAfin de palier aux difficultés d’installation dues principalement aux dépendances logicielles coté serveur, un script d’installation "tout en un" en bash a été créé afin de faciliter cette étape sur un serveur doté d’une distribution Linux compatible.
Vous devez bénéficier d’un accès SSH à votre serveur et d’un compte "root" afin de l’utiliser, ce qui permettra d’installer les dépendances. Contactez votre hébergeur si vous ne disposez pas de cela.
La documentation de l’utilisation du script d’installation (...) -
Ajouter des informations spécifiques aux utilisateurs et autres modifications de comportement liées aux auteurs
12 avril 2011, parLa manière la plus simple d’ajouter des informations aux auteurs est d’installer le plugin Inscription3. Il permet également de modifier certains comportements liés aux utilisateurs (référez-vous à sa documentation pour plus d’informations).
Il est également possible d’ajouter des champs aux auteurs en installant les plugins champs extras 2 et Interface pour champs extras.
Sur d’autres sites (11162)
-
Silvia Pfeiffer Live Stream
14 juin, par silviaCategory : 2
Uploaded by : Silvia Pfeiffer
Hosted : youtubeThe post Silvia Pfeiffer Live Stream first appeared on ginger’s thoughts.
-
Rtsp streaming, no live
14 août 2018, par Alejandroi follow this topic for streaming rtsp here
now this is my conf in the server :ffmpeg -v info -i rtsp://XXXXX.ddns.net/onvif1 -c:v copy -c:a copy -bufsize 1835k -pix_fmt yuv420p -flags -global_header -hls_time 10 -hls_list_size 6 -hls_wrap 10 -start_number 1 /var/www/html/p433/assets/video/test.m3u8 -loglevel debug
The client :
<code class="echappe-js"><script src="https://cdnjs.cloudflare.com/ajax/libs/hls.js/0.10.1/hls.light.min.js"></script>
<script src="https://releases.flowplayer.org/7.2.6/flowplayer.min.js"></script>
<script><br />
flowplayer('#player', {<br />
live: true, // set if it's a live stream <br />
ratio: 9/16, // set the aspect ratio of the stream<br />
clip: {<br />
sources: [<br />
// path to the HLS m3u8<br />
{ type: "application/x-mpegurl", src: "&lt;?php echo asset_url();?>video/test.m3u8"},<br />
// path to an optional MP4 fallback<br />
{ type: "video/mp4", src: "//yourserver/path/index.mp4"}<br />
]<br />
}<br />
});<br />
</script>The problem ? dont show video in "Live", only show 20seconds aprox and the video is loop icon loading
what am I doing wrong ? I try it all night but I think that it reaches the point of not finding the right path
thanks for your time !
-
Youtube live stream with dynamic content
6 octobre 2019, par ArturekI’m trying to create a live stream with changing data in real-time on youtube.
Let’s say I want to show the current Bitcoin price in real-time. For instance, using python and sending requests to some public APIs, I can very easily get current prices of Bitcoin. But I have no idea how to create such a live stream, which will be automatically updated with fresh data.
I know that I can use ffmpeg to stream on youtube, but how would I change the content of my stream ?
# To make sure you know what I mean, I created a basic sample.
import requests
import json
import time
createYtLiveStream()
while(True):
response = requests.get('https://api.coindesk.com/v1/bpi/currentprice.json').json()
price = response['bpi']['USD']['rate']
updateYtLiveStream(price)
time.sleep(20)I want to do it on Ubuntu. Can you tell me how can I do it, please ?
Thanks.