Navigation

    Logo
    • Register
    • Login
    • Search
    • Recent
    • Tags
    • Unread
    • Categories
    • Unreplied
    • Popular
    • GitHub
    • Docu
    • Hilfe
    1. Home
    2. Deutsch
    3. Skripten / Logik
    4. Blockly
    5. [Frage BLOCKLY ] Klingel Bild per Telegram versenden / Snapshot von Cam per Telegram versenden

    NEWS

    • Neuer Blog: Fotos und Eindrücke aus Solingen

    • ioBroker@Smart Living Forum Solingen, 14.06. - Agenda added

    • ioBroker goes Matter ... Matter Adapter in Stable

    [Frage BLOCKLY ] Klingel Bild per Telegram versenden / Snapshot von Cam per Telegram versenden

    This topic has been deleted. Only users with topic management privileges can see it.
    • Knallochse
      Knallochse @Glasfaser last edited by

      @Glasfaser Erstmal danke für dein Script.
      Wenn ich dieses in Javascript importiere (ohne jegliche Änderung) wird ein Fehler bei den 4 Zeilen angezeigt

      writeFile('vis.0','/klingelbild/haustuer1.jpg', bild1);
      

      Expected 4 arguments, but got 3.

      Glasfaser 1 Reply Last reply Reply Quote 0
      • Glasfaser
        Glasfaser @Knallochse last edited by Glasfaser

        @Knallochse

        Nicht beachten … das Skript funktioniert !

        Du meinst das hier :

        1.JPG

        Knallochse 1 Reply Last reply Reply Quote 0
        • Knallochse
          Knallochse @Glasfaser last edited by

          @Glasfaser Nochmals vielen Dank. Ich werde es nächste Woche mal probieren.
          Den Rest des Wochenendes wurde Familienaktivitäten eingefordert 😀

          1 Reply Last reply Reply Quote 1
          • Negalein
            Negalein Global Moderator last edited by Negalein

            Hallo

            Ich habe das Script hier aus dem Thread angepasst.

            Es wird kein Bild unter dem angegebenen Pfad gespeichert.

            Könnte bitte jemand drüberschaun?

            // -------------------------------------------------------------------------
            // Dieses Script überwaht den Zustand eines Bewegungsmelders und speichert bei
            // Aktivierung ein Bild einer Überwachnungskamera in einem Vereichnis und sendet
            // dieses via Telegram.0-Adapter. Nach 10 Sek wird ein weiteres Bild erstellt und
            // gesendet.
            // Die Speicherung der Bilder erfolgt als "Stack", d.h. das aktuellste Bild bekommt
            // immer den Suffix "0" und es werden n Bilder mit den Suffixen 1..n-1 vorgehalten
            // Uhula 2017.11
            // -------------------------------------------------------------------------
            // -------------------------------------------------------------------------
            // Konfiguration
            // -------------------------------------------------------------------------
               // Objekt-ID des Bewegungsmelders
            const oidLichtBewmelderTuer = "doorbird.0.Motion.trigger";
               // URL zur Kamera umn ein Image (jpg) zu erhalten
            const cam_url = "http://user:password@10.0.1.84/bha-api/image.cgi";
               // Pfadangabe für die Speicherung der Bilder, der Pfad muss existieren
            const dest_path = '/opt/iobroker/iobroker-data/files/vis.0/Camsnapshot';
               // Anzahl der Bilder, die vorgehalten werden sollen
            const imageCountMax = 8;                
               // Prefix für die Bildnamen
            const imageNamePre = "sprechanlage_"; 
            // -------------------------------------------------------------------------
            // Scriptteil
            // -------------------------------------------------------------------------
            var request = require('request');
            var fs      = require('fs');
            // Bild an telegram schicken 
            //function sendImage (path) { 
                //try {
                    //var stats = fs.statSync(path);
                    //var msg = formatDate(stats.birthtime,"DD.MM.YYYY hh:mm:ss") + " " + path.substring(path.lastIndexOf('/')+1);
                    //sendTo('telegram.0', {
                        //text:                   path,
                        //caption:                msg, 
                        //disable_notification:   true
                    //});
                //}
                //catch(err) { if (err.code != "ENOENT") log(err); }     
            //}
            // löscht eine Datei synchron (wartet auf das Ergebnis)
            function fsUnlinkSync(path) {
                try {
                    var stats = fs.statSync(path);
                    try { fs.unlinkSync(path); }
                    catch(err) { if (err.code != "ENOENT") log(err); }     
                }
                catch(err) { if (err.code != "ENOENT") log(err); }
            }
            // benennt eine Datei synchron um (wartet auf das Ergebnis)
            function fsRenameSync(oldPath, newPath) {
                try {
                    var stats = fs.statSync(oldPath);
                    try { fs.renameSync(oldPath, newPath); }
                    catch(err) { if (err.code != "ENOENT") log(err); }     
                }
                catch(err) { if (err.code != "ENOENT") log(err); }
            }
            // Bild speichern und senden
            function saveImage() {
                // Bild imageCountMax-1 löschen
                fsUnlinkSync( dest_path + imageNamePre + (imageCountMax-1) + ".jpg" );
                // Bilder 0..imageCountMax-2 umbenennen
                for (var i=imageCountMax-2; i >= 0; i-- ) { 
                    fsRenameSync(dest_path + imageNamePre + i + ".jpg", dest_path + imageNamePre + (i+1) + ".jpg"); 
                }
                // Bild 0 löschen
                var fname = imageNamePre + "0.jpg";
                fsUnlinkSync( fname );
                // Bild holen und speichern
                request.get({url: cam_url, encoding: 'binary'}, function (err, response, body) {
                    fs.writeFile(dest_path + fname, body, 'binary', function(err) {
                        if (err) {
                            log('Fehler beim Bild speichern: ' + err, 'warn');
                        } else {
                            // dem Filesystem 2 Sek Zeit zum Speichern lassen
                            //setTimeout(function() { sendImage(dest_path + fname); }, 2000); 
                        }
                    }); 
                });
            }
            // sofort ein Bild senden und nach 8 Sek erneut
            function onEvent() {
                saveImage();
                setTimeout(function() { saveImage(); }, 8 * 1000); 
            }
            // Ereignisroutine
            on({id: oidLichtBewmelderTuer, val: true}, function (obj) {
                onEvent( obj );
            });
            // manuelle Ausführung (Test)
            onEvent();
            
            K 1 Reply Last reply Reply Quote 0
            • chucky666
              chucky666 last edited by chucky666

              Hallo zusammen,
              ich benutze dieses Script schon sehr lange , es funktioniert super.
              was muss ich ändern um mehr Bilder zu bekommen ? zb 3

              // -------------------------------------------------------------------------
              // Dieses Script überwaht den Zustand eines Bewegungsmelders und speichert bei
              // Aktivierung ein Bild einer Überwachnungskamera in einem Vereichnis und sendet
              // dieses via Telegram.0-Adapter. Nach 10 Sek wird ein weiteres Bild erstellt und
              // gesendet.
              // Die Speicherung der Bilder erfolgt als "Stack", d.h. das aktuellste Bild bekommt
              // immer den Suffix "0" und es werden n Bilder mit den Suffixen 1..n-1 vorgehalten
              // Uhula 2017.11
              // -------------------------------------------------------------------------
              
              // -------------------------------------------------------------------------
              // Konfiguration
              // -------------------------------------------------------------------------
                    // Objekt-ID des Bewegungsmelders
              const oidLichtBewmelderTuer = "deconz.0.Sensors.54.open";
                    // URL zur Kamera umn ein Image (jpg) zu erhalten
              const cam_url = "http://192.168.178.88/tmpfs/auto.jpg?usr=";
                    // Pfadangabe für die Speicherung der Bilder, der Pfad muss existieren
              const dest_path = '/home/test/';
                    // Anzahl der Bilder, die vorgehalten werden sollen
              const imageCountMax = 4;                
                    // Prefix für die Bildnamen
              const imageNamePre = "test_"; 
              
              // -------------------------------------------------------------------------
              // Scriptteil
              // -------------------------------------------------------------------------
              var request = require('request');
              var fs      = require('fs');
              
              // Bild an telegram schicken 
              function sendImage (path) { 
                  try {
                      var stats = fs.statSync(path);
                      var msg = formatDate(stats.birthtime,"DD.MM.YYYY hh:mm:ss") + " " + path.substring(path.lastIndexOf('/')+1);
                      sendTo('telegram.0', {
                          text:                   path,
                          caption:                msg, 
                          disable_notification:   true
                      });
                  }
                  catch(err) { if (err.code != "ENOENT") log(err); }     
              }
              
              // löscht eine Datei synchron (wartet auf das Ergebnis)
              function fsUnlinkSync(path) {
                  try {
                      var stats = fs.statSync(path);
                      try { fs.unlinkSync(path); }
                      catch(err) { if (err.code != "ENOENT") log(err); }     
                  }
                  catch(err) { if (err.code != "ENOENT") log(err); }
              }
              
              // benennt eine Datei synchron um (wartet auf das Ergebnis)
              function fsRenameSync(oldPath, newPath) {
                  try {
                      var stats = fs.statSync(oldPath);
                      try { fs.renameSync(oldPath, newPath); }
                      catch(err) { if (err.code != "ENOENT") log(err); }     
                  }
                  catch(err) { if (err.code != "ENOENT") log(err); }
              }
              
              // Bild speichern und senden
              function saveImage() {
                  // Bild imageCountMax-1 löschen
                  fsUnlinkSync( dest_path + imageNamePre + (imageCountMax-1) + ".jpg" );
                  // Bilder 0..imageCountMax-2 umbenennen
                  for (var i=imageCountMax-2; i >= 0; i-- ) { 
                      fsRenameSync(dest_path + imageNamePre + i + ".jpg", dest_path + imageNamePre + (i+1) + ".jpg"); 
                  }
                  // Bild 0 löschen
                  var fname = imageNamePre + "0.jpg";
                  fsUnlinkSync( fname );
                  // Bild holen und speichern
                  request.get({url: cam_url, encoding: 'binary'}, function (err, response, body) {
                      fs.writeFile(dest_path + fname, body, 'binary', function(err) {
                          if (err) {
                              log('Fehler beim Bild speichern: ' + err, 'warn');
                          } else {
                              // dem Filesystem 2 Sek Zeit zum Speichern lassen
                              setTimeout(function() { sendImage(dest_path + fname); }, 1000); 
                          }
                      }); 
                  });
              }
              
              // sofort ein Bild senden und nach 10 Sek erneut
              function onEvent() {
                  saveImage();
                  setTimeout(function() { saveImage(); }, 2 * 1000); 
              }
              
              // Ereignisroutine
              on({id: oidLichtBewmelderTuer, val: true}, function (obj) {
                  onEvent( obj );
              });
              
              // manuelle Ausführung (Test)
              onEvent();
              
              S K 2 Replies Last reply Reply Quote 0
              • S
                Stoni @chucky666 last edited by

                @chucky666 Kann Dir leider keine Antwort auf Deine Frage geben, aber vielleicht kannst Du mir helfen. Wollte Dein Script auch mal testen, aber ich glaube, es fehlt mir an Berechtigungen.

                Folgende Fehlermeldung kommt:

                javascript.0
                2020-02-01 15:54:22.135
                warn
                (793) script.js.common.Telegram_Bilder: Fehler beim Bild speichern: Error: EACCES: permission denied, open '/home/test_0.jpg
                

                Ich konnte unter /Home/ auch keinen neuen Ordner erstellen, wo die Bilder temporär gespeichert werden sollen. Irgendwie muss ich die Berechtigung erlangen über root oder ähnliches. Wie geht das?

                Viele Grüße

                1 Reply Last reply Reply Quote 0
                • chucky666
                  chucky666 last edited by

                  Den Ordner habe ich mit Root erstellt und eine 775 Berechtigung .

                  S 1 Reply Last reply Reply Quote 0
                  • S
                    Stoni @chucky666 last edited by

                    @chucky666 sagte in [Frage BLOCKLY ] Klingel Bild per Telegram versenden / Snapshot von Cam per Telegram versenden:

                    Den Ordner habe ich mit Root erstellt und eine 775 Berechtigung .

                    Wie hast du das gemacht?

                    1 Reply Last reply Reply Quote 0
                    • K
                      klaus88 @chucky666 last edited by klaus88

                      @chucky666 : Du musst im Abschnitt:

                      // sofort ein Bild senden und nach 10 Sek erneut
                      function onEvent() {
                          saveImage();
                          setTimeout(function() { saveImage(); }, 2 * 1000); 
                      }
                      

                      neue Zeiten eintragen !
                      ich habe z.B. folgendes eingetragen:

                      function onEvent() {
                          saveImage();
                          setTimeout(function() { saveImage(); }, 10 * 1000);
                      	setTimeout(function() { saveImage(); }, 15 * 1000);
                      	setTimeout(function() { saveImage(); }, 20 * 1000);
                      	setTimeout(function() { saveImage(); }, 40 * 1000); 	
                      }
                      

                      damit bekomme ich sofort und in 10, 15, 20 und 40 sek ein Bild.
                      Hoffentlich gelingt es
                      lg
                      Klaus

                      1 Reply Last reply Reply Quote 0
                      • K
                        klaus88 @Negalein last edited by klaus88

                        @Negalein : Hallo!
                        Hast du das Problem noch?
                        Falls ja: Hast du Meldungen im iobroker Log zu diesem Script?

                        Was du auf die schnelle noch probieren kannst: Ändere den Pfad wo es hingespeichert wird. ich habe oft Probleme mit dem VIS.0 Pfad - nehme daher immer den /home/pi/ Pfad!
                        Schau mal unter: Link Text

                        lg
                        Klaus

                        1 Reply Last reply Reply Quote 0
                        • chucky666
                          chucky666 @Alex1808 last edited by Negalein

                          @Alex1808 sagte in [Frage BLOCKLY ] Klingel Bild per Telegram versenden / Snapshot von Cam per Telegram versenden:

                          Ich versende stamt Bild eine kleine mp4 Datei die als Gif bei Telegram ankommt.

                          einfach ffmpeg installieren und Befehl mit Blockly schicken.

                          513_screenshot_at_juli_04_11-29-16.png

                          Befehl URL:

                          ffmpeg -y -i rtsp://kamera_ip:554/12 -t 5 -f mp4 -vcodec libx264 -pix_fmt yuv420p -an -vf scale=w=640:h=360:force_original_aspect_ratio=decrease -r 15 /opt/iobroker/out2.mp4
                          

                          (Muss zu eigene Kameras angepasst werden)

                          Hallo
                          Ich muss das hier mal etwas aufwärmen .
                          Muss das Passwort von der Kamera auch mit darein ? Wenn ja wohin ?

                          1 Reply Last reply Reply Quote 0
                          • D
                            deAchte last edited by

                            Hallo,

                            bin schon seit einer Woche am Testen von diesem Skript.
                            Leider speichert das Skript kein Foto von der Klingelkamera (Dahua VTO2000A), mit einer anderen Kamera funktioniert alles.
                            Ich habe schon mehrere Möglichkeiten für den Login versucht:

                            1. Möglichkeit: http://IP/cgi-bin/snapshot.cgi?1&loginuse=Benutzer&loginpas=Passwort
                            2. Möglichkeit: http://Benutzer:Passwort@IP/cgi-bin/snapshot.cgi?1
                            3. Möglichkeit: http://Benutzer:Passwort@IP/cgi-bin/snapshot.cgi?1&loginuse=Benutzer&loginpas=Passwort

                            Mit Chrome bekomme ich direkt das Bild angezeigt, wenn ich die 3. Möglichkeit verwende.
                            Bei Möglichkeit 1 und 2 muss ich nochmal den Benutzernamen und das Passwort eingeben.

                            Mit dem alten Internet Explorer Bekomme ich bei der 2. und 3. Methode einen Fehler "Die Datei wurde nicht gefunden. Überprüfen Sie die Schreibweise.
                            Die erste Möglichkeit funktioniert, ich muss allerdings nochmal das Passwort und den Benutzernamen eingeben.

                            Hat vielleicht irgendjemand eine Lösung für das Problem?

                            M 1 Reply Last reply Reply Quote 0
                            • M
                              maxpd @deAchte last edited by

                              So wie ich den Thread hier https://forum.iobroker.net/topic/2272/frage-bild-per-telegram-verschicken verstanden habe, muss ich nur eine URL meines Raspis als Textnachricht über Telegram versenden? Also quasi sowas: http://192.123.178.109:1234/state/doorbird.1.Doorbell.2.snapshot

                              7f42bdc8-90eb-4f7b-98a2-7810116cc7b4-image.png

                              Ich bekomme dann nur eine Nachricht die heißt "undefinedDINGDONG"

                              Habe auch einen Timeout probiert, weil ich das Gefühl hatte, dass das Bild nicht schnell genug gespeichert wird, aber ohne Erfolg.

                              Glasfaser 1 Reply Last reply Reply Quote 0
                              • Glasfaser
                                Glasfaser @maxpd last edited by Glasfaser

                                @maxpd

                                Beispiel :

                                1.JPG

                                wget --output-document /opt/iobroker/iobroker-data/files/vis.0/alarm.jpg "http://user:passwort@192.168.1.1/streaming/channels/101/picture/"
                                
                                /opt/iobroker/iobroker-data/files/vis.0/alarm.jpg
                                

                                <xml xmlns="https://developers.google.com/blockly/xml">
                                 <variables>
                                   <variable type="timeout" id="timeout">timeout</variable>
                                 </variables>
                                 <block type="on_ext" id="jj8??y8iv{!Fb0^jZ!" x="-438" y="-262">
                                   <mutation xmlns="http://www.w3.org/1999/xhtml" items="1"></mutation>
                                   <field name="CONDITION">ne</field>
                                   <field name="ACK_CONDITION"></field>
                                   <value name="OID0">
                                     <shadow type="field_oid" id="XEKh|+XF~3OC@EHY5{8{">
                                       <field name="oid">mihome.0.devices.sensor_motion_aq2_158d0001e514d4.state</field>
                                     </shadow>
                                   </value>
                                   <statement name="STATEMENT">
                                     <block type="controls_if" id="xXlCTj)t?n*Gg:j44f#Y">
                                       <value name="IF0">
                                         <block type="logic_compare" id="pMPW|b)g/=L3!yP`vsW6">
                                           <field name="OP">EQ</field>
                                           <value name="A">
                                             <block type="get_value" id="5c7%aB|)K}(rNJ)#Jzd1">
                                               <field name="ATTR">val</field>
                                               <field name="OID">mihome.0.devices.sensor_motion_aq2_158d0001e514d4.state</field>
                                             </block>
                                           </value>
                                           <value name="B">
                                             <block type="logic_boolean" id="Lhj]yTw*W`/`leEqri.g">
                                               <field name="BOOL">TRUE</field>
                                             </block>
                                           </value>
                                         </block>
                                       </value>
                                       <statement name="DO0">
                                         <block type="exec" id="BEjD=u,#e-;T;d-e9D;r">
                                           <mutation xmlns="http://www.w3.org/1999/xhtml" with_statement="false"></mutation>
                                           <field name="WITH_STATEMENT">FALSE</field>
                                           <field name="LOG"></field>
                                           <value name="COMMAND">
                                             <shadow type="text" id="p+g^=?Sl15wP.0/4C~~B">
                                               <field name="TEXT">wget --output-document /opt/iobroker/iobroker-data/files/vis.0/alarm.jpg "http://user:passwort@192.168.1.1/streaming/channels/101/picture/"</field>
                                             </shadow>
                                           </value>
                                           <next>
                                             <block type="timeouts_settimeout" id="e=c#~E)j;S+#onaowS77">
                                               <field name="NAME">timeout</field>
                                               <field name="DELAY">2500</field>
                                               <field name="UNIT">ms</field>
                                               <statement name="STATEMENT">
                                                 <block type="telegram" id="FbkrL,IGK%]5xBi#Yj,=">
                                                   <field name="INSTANCE">.0</field>
                                                   <field name="LOG"></field>
                                                   <field name="SILENT">FALSE</field>
                                                   <field name="PARSEMODE">default</field>
                                                   <value name="MESSAGE">
                                                     <shadow type="text" id="wXLWD;.*8||`3_5J8(UB">
                                                       <field name="TEXT">/opt/iobroker/iobroker-data/files/vis.0/alarm.jpg</field>
                                                     </shadow>
                                                   </value>
                                                 </block>
                                               </statement>
                                             </block>
                                           </next>
                                         </block>
                                       </statement>
                                     </block>
                                   </statement>
                                 </block>
                                </xml>
                                

                                M 1 Reply Last reply Reply Quote 1
                                • M
                                  maxpd @Glasfaser last edited by

                                  @glasfaser Danke.

                                  Er schickt mir alledings nur den Pfad an Telegram.

                                  Vielleicht funktioniert aber auch exec nicht so, wie ich es mir vorstelle. Ich muss mir den Pfad zusammenbauen, weil der Dateiname im originären Ablagepfad das Datum beinhaltet und immer anders ist:

                                  76214afb-dcbb-4be4-a87b-d1ddf86c784f-image.png

                                  on({id: new RegExp('doorbird\\.0\\.Doorbell\\.1\\.snapshot' + "$|" + 'doorbird\\.0\\.Doorbell\\.1\\.trigger' + "$"), change: "any"}, async function (obj) {
                                      exec((['wget --output-document /opt/iobroker/iobroker-data/files/vis.0/alarm.jpg "',getState("doorbird.0.Doorbell.1.snapshot").val,'"'].join('')));
                                    if (getState("doorbird.0.Doorbell.1.trigger").val == true) {
                                      timeout = setTimeout(async function () {
                                        sendTo("telegram.0", "send", {
                                            text: '/opt/iobroker/iobroker-data/files/vis.0/alarm.jpg'
                                        });
                                      }, 3000);
                                    }
                                  });
                                  
                                  //JTNDeG1sJTIweG1sbn
                                  
                                  Glasfaser 1 Reply Last reply Reply Quote 0
                                  • Glasfaser
                                    Glasfaser @maxpd last edited by

                                    @maxpd

                                    Ist das eine Doorbird .

                                    Warum über Pfad zusammenbauen ?
                                    Ich bin jetzt nicht Zuhause muss nochmal nachschauen ........
                                    , aber über den Link + user+password , kannst du doch das Bild direkt holen ?

                                    http://<device-ip>/bha-api/image.cgi
                                    
                                    M 1 Reply Last reply Reply Quote 0
                                    • M
                                      maxpd @Glasfaser last edited by

                                      @glasfaser Ja eine Doorbird.

                                      Das Attribut beinhaltet ja den direkten Pfad zum Bild, den man auch im Browser öffnen kann. Ich ging anfänglich davon aus, das reicht.

                                      Glasfaser 1 Reply Last reply Reply Quote 0
                                      • Glasfaser
                                        Glasfaser @maxpd last edited by

                                        @maxpd

                                        hier mein Script:

                                        const idklingel = ["0_userdata.0.DoorBird.Klingel", "hm-rpc.1.KEQ0023561.1.STATE", "ID3", "ID4"];
                                        
                                        var sperre = false;  //verhindert das doppeltes Drücken das Script stoppt
                                        var timeout1, timeout2, timeout3, timeout4, timeout5, timeout6, timeout7, timeout8, timeout9, timeout10, timeout11;
                                        var fs = require('fs');
                                         
                                        on({id: idklingel, change: "any"}, function (obj) {
                                        
                                          if(!sperre) {
                                        
                                            sperre = true;
                                        
                                            
                                             // Speichert das erste Bild bei Klingeln
                                            timeout4 = setTimeout(function(){
                                              exec('wget --output-document /tmp/DoorBird.jpg \'http://user:passwort@192.168.178.54/bha-api/image.cgi\'');
                                        
                                            }, 1000); 
                                            
                                        
                                             // Telegram versenden
                                            timeout4 = setTimeout(function(){
                                        
                                                sendTo('telegram.0', {text: '/tmp/DoorBird.jpg', caption: 'Jemand klingelt an der Haustür !!!', disable_notification: true});
                                        
                                                        //log ('__ Klingel-Bild wurde versendet __');
                                        
                                            }, 7000); 
                                            
                                            }
                                                   
                                            timeout6 = setTimeout(function() {
                                        
                                               sperre = false;
                                        
                                            }, 5000); //Zeit für Klingelsperre 1.Zeile
                                        
                                             // Bilder werden nach vis gespeichert
                                            timeout7 = setTimeout(function () {
                                        
                                                 const bild1 = fs.readFileSync('/tmp/DoorBird.jpg');
                                        
                                                 writeFile('vis.0','/klingelbild/DoorBird.jpg', bild1);
                                            
                                        
                                            }, 20000); 
                                        
                                        });
                                        
                                        

                                        oder als Mini Video , per ffmpeg:

                                        var timeout;
                                        
                                        
                                        //Installation  apt-get update dann apt-get install ffmpeg
                                        
                                        on({id: '0_userdata.0.DoorBird.Klingel', val: true}, async function (obj) {
                                          var value = obj.state.val;
                                          var oldValue = obj.oldState.val;
                                          exec('ffmpeg -y -i rtsp://user:passwort@192.168.178.54:8557/mpeg/media.amp -t 8 -f mp4 -vcodec libx264 -pix_fmt yuv420p -an -vf scale=w=1280:h=738:force_original_aspect_ratio=decrease -r 10 /tmp/doorbird-motion.mp4');
                                          console.log("exec: " + 'ffmpeg -y -i rtsp://user@passwort:8557/mpeg/media.amp -t 8 -f mp4 -vcodec libx264 -pix_fmt yuv420p -an -vf scale=w=1280:h=738:force_original_aspect_ratio=decrease -r 10 /tmp/doorbird-motion.mp4');
                                          timeout = setTimeout(async function () {
                                            sendTo("telegram.0", "send", {
                                                text: '/tmp/doorbird-motion.mp4',
                                                disable_notification: true
                                            });
                                            console.log("telegram: " + '/tmp/doorbird-motion.mp4');
                                          }, 15000);
                                        });
                                        
                                        1 Reply Last reply Reply Quote 1
                                        • M
                                          maxpd last edited by

                                          @glasfaser Danke dir, muss ich mir mal Zeit holen um das zu bauen. Einfach als Blockly importieren hat nicht funktioniert.

                                          Hast du für Mini Video die Doorbird Cloud abonniert?

                                          Negalein Glasfaser 2 Replies Last reply Reply Quote 0
                                          • Negalein
                                            Negalein Global Moderator @maxpd last edited by

                                            @maxpd sagte in [Frage BLOCKLY ] Klingel Bild per Telegram versenden / Snapshot von Cam per Telegram versenden:

                                            Einfach als Blockly importieren hat nicht funktioniert.

                                            Ist ein Javascript!

                                            1 Reply Last reply Reply Quote 1
                                            • First post
                                              Last post

                                            Support us

                                            ioBroker
                                            Community Adapters
                                            Donate

                                            742
                                            Online

                                            31.9k
                                            Users

                                            80.2k
                                            Topics

                                            1.3m
                                            Posts

                                            36
                                            157
                                            32785
                                            Loading More Posts
                                            • Oldest to Newest
                                            • Newest to Oldest
                                            • Most Votes
                                            Reply
                                            • Reply as topic
                                            Log in to reply
                                            Community
                                            Impressum | Datenschutz-Bestimmungen | Nutzungsbedingungen
                                            The ioBroker Community 2014-2023
                                            logo