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/01 19:30] – [Serveur RTSPtoWeb (stream de flux RTSP sur le web)] 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 127: Ligne 127:
 Type=simple Type=simple
 Restart=always Restart=always
-ExecStart= /home/debisto/RTSPtoWeb/RTSPtoWeb.bin +ExecStart= /$TONPATH/RTSPtoWeb/RTSPtoWeb.bin 
-WorkingDirectory=/home/debisto/RTSPtoWeb+WorkingDirectory=/$TONPATH/RTSPtoWeb
  
 [Install] [Install]
Ligne 145: Ligne 145:
  
 Exemple :  Exemple : 
-https://pisto.fr.nf:8084+<code bash>https://$TONDNS:8084</code>
  
  
 +
 +====== 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 
 +
 +
 +Pour l'ajouter dans une page Web, il faut utiliser videojs ( https://github.com/videojs/http-streaming?tab=readme-ov-file#initialization ).
 +Fichiers : {{ :linux:installation:videojs_js_et_css.7z |}}
 +
 +Exemple dans une page PHP : 
 +
 +<code php>
 +<!doctype html>
 +<html lang="fr">
 +<head>
 +  <meta charset="utf-8">
 +  <title>Titre</title>
 +  <link href="../css.css" rel="stylesheet">
 +  <link href="css/video-js.css" rel="stylesheet" />
 +    <!-- "core" version of Video.js -->
 +  <script src="js/video.min.js"></script>
 +  <script src="js/videojs-http-streaming.min.js"></script>
 +</head>
 +
 +<body>
 +
 +<?php
 +  
 +  $TONDNS = "example.org";
 +  
 +  $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>
 +
 +&nbsp;
 +
 +<?php
 +  }
 +
 +?>
 +
 +</body>
 +</code>
 +
 +
 +====== Ajouter une nouvelle Cam ======
 +Editer la config de RTSPtoWeb :
 +<code bash>nano /$TONPATH/RTSPtoWeb/config.json</code>
 +
 +Ajouter dans les streams : 
 +<code bash>
 +    ,"NomDeLaCam": {
 +      "name": "NomDeLaCam",
 +      "channels": {
 +        "0": {
 +          "name": "ch1",
 +          "url": "rtsp://IPDELACAM:554/11",
 +          "debug": false,
 +          "on_demand": true,
 +          "audio": true,
 +          "status": 0
 +        }
 +      }
 +    }
 +</code>
 +    
 +Redémarrer le service rtsp : 
 +<code bash>sudo systemctl restart rtsp.service</code>
 +
 +Vérifier son statut :
 +<code bash>sudo systemctl status rtsp.service</code>
 +
 +Si tout est OK, la nouvelle cam est disponible par le gestionnaire de RTSPtoWeb.
  
  
  
linux/installation/rtsptoweb.1740857452.txt.gz · Dernière modification : 2025/03/01 19:30 de tutospisto