
Recherche avancée
Médias (1)
-
The pirate bay depuis la Belgique
1er avril 2013, par
Mis à jour : Avril 2013
Langue : français
Type : Image
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 ;
-
Ecrire une actualité
21 juin 2013, parPrésentez les changements dans votre MédiaSPIP ou les actualités de vos projets sur votre MédiaSPIP grâce à la rubrique actualités.
Dans le thème par défaut spipeo de MédiaSPIP, les actualités sont affichées en bas de la page principale sous les éditoriaux.
Vous pouvez personnaliser le formulaire de création d’une actualité.
Formulaire de création d’une actualité Dans le cas d’un document de type actualité, les champs proposés par défaut sont : Date de publication ( personnaliser la date de publication ) (...) -
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 (6330)
-
B2B Customer Journey Map : A Quickfire Guide for Growth
20 mai 2024, par Erin -
playing live streaming with video.js
12 juin 2015, par randomuser1I want to stream on a webpage a video live that I receive from a server (with ffserver). So far when I write a very simple code :
<code class="echappe-js"><script src="http://www.andy-howard.com/js/libs/jquery-1.8.2.min.js"></script>
<script src="http://vjs.zencdn.net/4.12.6/video.js"></script>
then it doesn’t work. But when I replace the line :
<source src="http://10.172.180.235:8090/live.flv" type="video/x-flv">
</source>with this one :
<source src="http://vjs.zencdn.net/v/oceans.mp4" type="video/mp4">
</source>then I can see the stream, but it comes from a file... Is there a way to display on my webpage live stream coming from ffserver ? Thanks.
-
How to embed m3u8 from ffmpeg Raspberry in Network Webserver
25 octobre 2022, par FunnyOI have a Raspberry-Pi converting an RTSP-Stream to HLS-Segments via ffmpeg.
Now when I try to embed the Stream,


I use this :




 

<video class="video-js vjs-default-skin" width="400" height="300" controls="controls">
 <source type="application/x-mpegURL" src="http://192.168.2.45/files/hls/live.m3u8">
</source></video>
<code class="echappe-js"><script src="https://vjs.zencdn.net/ie8/ie8-version/videojs-ie8.min.js"></script>

<script src="https://cdnjs.cloudflare.com/ajax/libs/videojs-contrib-hls/5.14.1/videojs-contrib-hls.js"></script>

<script src="https://vjs.zencdn.net/7.2.3/video.js"></script>



Working like a charm on the local raspberrypi apache2 Server.


Now the problem is, I cannot display this stream with the identical code on a seperate device.


What am I doing wrong ?
Is there a Firewallport I need to open ?
I dont think so ?
I can access the files when opening : http://192.168.2.45/files/hls/ on the seperate device.