Outils pour utilisateurs

Outils du site


linux:installation:rtsptoweb

Différences

Ci-dessous, les différences entre deux révisions de la page.

Lien vers cette vue comparative

Les deux révisions précédentesRévision précédente
Prochaine révision
Révision précédente
linux:installation:rtsptoweb [2025/03/02 20:06] – [Ajouter une nouvelle Cam] tutospistolinux:installation:rtsptoweb [2025/03/02 20:30] (Version actuelle) tutospisto
Ligne 77: Ligne 77:
   },   },
   "streams": {   "streams": {
-    "Couvoir": { +    "Cam1": { 
-      "name": "Couvoir",+      "name": "Cam1",
       "channels": {       "channels": {
         "0": {         "0": {
Ligne 89: Ligne 89:
       }       }
     },     },
-    "Pondoir": { +    "Cam2": { 
-      "name": "Pondoir",+      "name": "Cam2",
       "channels": {       "channels": {
         "0": {         "0": {
Ligne 151: Ligne 151:
 ====== Intégrer les vidéos dans une page html ====== ====== Intégrer les vidéos dans une page html ======
  
 +Source :
 +  * https://stackoverflow.com/questions/19782389/playing-m3u8-files-with-html-video-tag 
 +  * https://videojs.com/getting-started/#videojs-cdn 
 +  * https://github.com/videojs/http-streaming?tab=readme-ov-file#initialization 
 +  * https://unpkg.com/browse/@videojs/http-streaming@3.15.0/dist/videojs-http-streaming.min.js 
 +  * https://github.com/videojs/http-streaming?tab=readme-ov-file#installation 
  
-<code php> 
  
-<!-- CSS  --> +Pour l'ajouter dans une page Web, il faut utiliser videojs ( https://github.com/videojs/http-streaming?tab=readme-ov-file#initialization ). 
- <link href="https://vjs.zencdn.net/7.2.3/video-js.css" rel="stylesheet">+Fichiers : {{ :linux:installation:videojs_js_et_css.7z |}}
  
 +Exemple dans une page PHP : 
  
-<!-- HTML --+<code php> 
-<video id='hls-example'  class="video-js vjs-default-skinwidth="800height="600controls+<!doctype html
-<!-- <source type="application/x-mpegURLsrc="https://pisto.fr.nf:8084/stream/Couvoir/channel/0/hls/live/index.m3u8"> --> +<html lang="fr"> 
-<source type="application/x-mpegURL" src="https://pisto.fr.nf:8084/stream/Pondoir/channel/0/hls/live/index.m3u8"> +<head> 
-</video>+  <meta charset="utf-8"
 +  <title>Titre</title> 
 +  <link href="../css.cssrel="stylesheet"> 
 +  <link href="css/video-js.cssrel="stylesheet/> 
 +    <!-- "core" version of Video.js --> 
 +  <script src="js/video.min.js"></script> 
 +  <script src="js/videojs-http-streaming.min.js"></script
 +</head>
  
 +<body>
  
-<!-- JS code --> +<?php 
-<!-If you'd like to support IE8 (for Video.js versions prior to v7) --> +   
-<script src="https://vjs.zencdn.net/ie8/ie8-version/videojs-ie8.min.js"></script> +  $TONDNS = "example.org"; 
-<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>+  $cameras = [ 
 +    'Cam1', 
 +    'Cam2', 
 +    'Cam3' 
 +  ]; 
 +  foreach ($cameras as $valeur) { 
 +    ?><video-js id=<?php echo ("'".$valeur."'");?> width='540' height='360' class="vjs-default-skin" controls autoplay muted style="margin-bottom:10px;"
 +      <source src=<?php echo ("'https://".$TONDNS.":8084/stream/".$valeur."/channel/0/hls/live/index.m3u8'");?> type="application/x-mpegURL"> 
 +    </video-js
 +    <script
 +      var player videojs(<?php echo ("'".$valeur."'");?>); 
 +      player.play(); 
 +    </script>
  
-<script> +&nbsp;
-var player = videojs('hls-example'); +
-player.play(); +
-</script>+
  
 +<?php
 +  }
 +
 +?>
  
 +</body>
 </code> </code>
-Source : https://stackoverflow.com/questions/19782389/playing-m3u8-files-with-html-video-tag  +
-https://videojs.com/getting-started/#videojs-cdn  +
-https://github.com/videojs/http-streaming?tab=readme-ov-file#initialization  +
-https://unpkg.com/browse/@videojs/http-streaming@3.15.0/dist/videojs-http-streaming.min.js  +
-https://github.com/videojs/http-streaming?tab=readme-ov-file#installation +
  
 ====== Ajouter une nouvelle Cam ====== ====== Ajouter une nouvelle Cam ======
 +Editer la config de RTSPtoWeb :
 <code bash>nano /$TONPATH/RTSPtoWeb/config.json</code> <code bash>nano /$TONPATH/RTSPtoWeb/config.json</code>
  
 Ajouter dans les streams :  Ajouter dans les streams : 
- 
 <code bash> <code bash>
     ,"NomDeLaCam": {     ,"NomDeLaCam": {
Ligne 202: Ligne 226:
         }         }
       }       }
-    }</code>+    } 
 +</code>
          
 Redémarrer le service rtsp :  Redémarrer le service rtsp : 
Ligne 212: Ligne 237:
 Si tout est OK, la nouvelle cam est disponible par le gestionnaire de RTSPtoWeb. Si tout est OK, la nouvelle cam est disponible par le gestionnaire de RTSPtoWeb.
  
-Pour l'ajouter dans une page Web, il faut utiliser +
  
linux/installation/rtsptoweb.1740945992.txt.gz · Dernière modification : 2025/03/02 20:06 de tutospisto