<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[[gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden?]]></title><description><![CDATA[<p dir="auto">Hallo,</p>
<p dir="auto">ich habe neulich, vor ein paar Wochen, hier im Forum einen Screenshot von einer VIS-VIEW eines Users gesehen, der die Tagesschau in 100s eingebunden hat.</p>
<p dir="auto">Das Einbinden einer Videodatei ist eigentlich kein Problem, aber speziell in diesem Falle fehlt mir der korrekte jeweils aktuelle Link zur letzten Sendung. Denn neben dem richtigen Verzeichnis aus Jahreszahl und restlichem Datum werden auch noch andere Zeichenfolgen verwendet, die sich ständig verändern. Vielleicht gibt es ja einen alternativen Link?</p>
<p dir="auto">Ich würde mich freuen, wenn der User sich meldet.</p>
<p dir="auto">Gruß</p>
<p dir="auto">Pix</p>
]]></description><link>https://forum.iobroker.net/topic/2051/gelöst-frage-wer-hat-die-tagesschau-in-100s-eingebunden</link><generator>RSS for Node</generator><lastBuildDate>Tue, 18 Aug 2026 05:53:02 GMT</lastBuildDate><atom:link href="https://forum.iobroker.net/topic/2051.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 29 Feb 2016 19:45:40 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Mon, 07 Oct 2019 06:25:11 GMT]]></title><description><![CDATA[<p dir="auto">Hallo,</p>
<p dir="auto">ich habe im letzten Post ja nur das Ergebnis gezeigt, nicht den Weg dahin. Wird hier nachgeholt:</p>
<p dir="auto">Wie oben erwähnt, ändert sich der Link zur aktuellsten Version der Sendung ständig. Deshalb nutze ich dieses Skript, um den Link zeitgesteuert zu aktualisieren. Das Skript legt einen Datenpunkt "VIS.URL.Tagesschau" an. Den brauche ich später in VIS.</p>
<p dir="auto">Neue Version vom 11.11.2018</p>
<pre><code>/* VIS Tagesschau_Link
parsed die Seite https://www.tagesschau.de/100sekunden/ und sucht nach der URL zum aktuellsten Video
 02.03.2016 erstellt von pix
15.03.2016 zu Javascript Instanz 1 gewechselt
24.09.2016 umbenannt in VIS_Link_Tagesschau
11.11.2018 Skript angepasst und optimiert
*/
const fC = false; // forceCreation für createState()
const logging = false;
const instanz = 'javascript.1.';
const idURL = instanz + 'VIS.URL.Tagesschau';
// ab hier nix mehr ändern
const link = "http://www.tagesschau.de/100sekunden/";
 createState(idURL,"", fC, {
    name: "Link zu Tagesschau in 100s",
    desc: "geparster Link aus tagesschau.de",
    type: "string",
    role: "text.url"
});
 function findeURL () {   
    let request = require('request');
    let film_url;
    try {
        request(link, function (error, response, body) {
            if (!error &amp;&amp; response.statusCode == 200) {
                // kein Fehler, Inhalt in body
                //log(body);
                // HTML Code der Webseite: Inhalt zwischen  und 
  speichern
                let text1 = "
 Wir bieten dieses Video in folgenden Formaten zum Download an:
 ",
                    text2 = "
 **Hinweis:** Falls die Videodatei beim Klicken nicht automatisch gespeichert wird, können Sie mit der rechten Maustaste klicken und 'Ziel speichern unter ...' auswählen.
 "; 
                let start = body.search(text1) + text1.length;
                let ende = body.search(text2);
                if (logging) log("Startposition: " + start);
                if (logging) log("Endposition: " + ende);
                let zwischenspeicher = ((start != -1) &amp;&amp; (ende != -1) ) ? body.slice(start,ende) : "Fehler beim Ausschneiden";
                if (logging) log("Zwischenspeicher: " + zwischenspeicher);

                let text3 = "//download", 
                    text4 = ".websm.h264.mp4"; 
                let start2 = body.search(text3);
                let ende2 = body.search(text4);
                if (logging) log("Startposition2: " + start2);
                if (logging) log("Endposition2: " + ende2);
                let zwischenspeicher2 = ((start2 != -1) &amp;&amp; (ende2 != -1) ) ? body.slice(start2,ende2) : "Fehler beim Ausschneiden 2";
                if (logging) log(zwischenspeicher2);
                film_url = "http:" + zwischenspeicher2 + ".webl.h264.mp4";
                setState(idURL, film_url);
                if (logging) log ("URL: " + film_url);
            } else  { // Error beim Einlesen
                log(error, 'error'); 
            }
        });   // Ende request 
    } catch (fehler) {
        log("Fehler (try): " + fehler, "error");
    }
} // Ende findeURL
 schedule("8 */1 * * *", findeURL); // jedeStunde um 8 nach voll
setTimeout(findeURL, 2000);

</code></pre>
<p dir="auto">ALTE VERSION VON 2016</p>
<pre><code>/* VIS Tagesschau_Link
parsed die Seite https://www.tagesschau.de/100sekunden/ und sucht nach der URL zum aktuellsten Video
 erstellt: 02.03.2016 von pix
15.03.2016 zu Javascript Instanz 1 gewechselt
*/
 var logging = false;
var instanz = 'javascript.1.';
 // ab hier nix mehr ändern
 createState('VIS.URL.Tagesschau','', {
    name: 'Link zu Tagesschau in 100s',
    desc: 'geparster Link aus tagesschau.de',
    type: 'string'
});
 var idURL = instanz + 'VIS.URL.Tagesschau';
 var link = 'http://www.tagesschau.de/100sekunden/';
var film_url;
 function findeURL () {   
    var optin = true;
    var request = require('request');
     if (optin) try {
        request(link, function (error, response, body) {
            if (!error &amp;&amp; response.statusCode == 200) {
                // kein Fehler, Inhalt in body
                //log(body);
                // HTML Code der Webseite: Inhalt zwischen  und 
  speichern
                var text1 = '
 Wir bieten dieses Video in folgenden Formaten zum Download an:
 ',
                    text2 = '
 **Hinweis:** Falls die Videodatei beim Klicken nicht automatisch gespeichert wird, können Sie mit der rechten Maustaste klicken und "Ziel speichern unter ..." auswählen.
 '; 
                var start = body.search(text1) + text1.length;
                var ende = body.search(text2);
                if (logging) log('Startposition: ' + start);
                if (logging) log('Endposition: ' + ende);
                var zwischenspeicher = ((start != -1) &amp;&amp; (ende != -1) ) ? body.slice(start,ende) : 'Fehler beim Ausschneiden';
                if (logging) log(zwischenspeicher);

                var text3 = 'http://download',
                    text4 = '.websm.h264.mp4'; 
                var start2 = body.search(text3);
                var ende2 = body.search(text4);
                if (logging) log('Startposition: ' + start2);
                if (logging) log('Endposition: ' + ende2);
                var zwischenspeicher2 = ((start2 != -1) &amp;&amp; (ende2 != -1) ) ? body.slice(start2,ende2) : 'Fehler beim Ausschneiden';
                if (logging) log(zwischenspeicher2);
                film_url = zwischenspeicher2 + '.webl.h264.mp4';
                setState(idURL, film_url);
            } else  { // Error beim Einlesen
                log(error, 'error'); 
            }
        });   // Ende request 
    } catch (fehler) {
        log('Fehler (try): ' + fehler, 'error');
    }
} // Ende findeURL
 schedule("8 */1 * * *", findeURL); // jedeStunde um 8 nach voll
findeURL();
</code></pre>
<p dir="auto">Jetzt muss in VIS noch ein <strong><strong>Widget</strong></strong> mit Dialog gebaut werden, das bei Tastendruck den Dialog öffnet, in welchem dann das Video läuft:</p>
<pre><code>[{"tpl":"tplMetroTileDialogStatic","data":{"visibility-cond":"==","visibility-val":1,"hover":false,"transform":"true","bg_class":"bg-darkCyan","icon_class":"","icon_badge":"","badge_bg_class":"","brand_bg_class":"","dialog_draggable":"true","dialog_icon_class":"icon-film","gestures-offsetX":0,"gestures-offsetY":0,"name":"Tagesschau","label":"tagesschau in 100s","html":"\n&lt;video src="\&amp;quot;{javascript.1.VIS.URL.Tagesschau}\&amp;quot;" width="\&amp;quot;950\&amp;quot;" height="\&amp;quot;543\&amp;quot;" \nposter="\&amp;quot;video-standbild.jpg\&amp;quot;" autobuffer/autoplay/\ncontrols=""&gt;\n\nSchade – hier käme ein Video, wenn Ihr \nBrowser HTML5 Unterstützung hätte, wie z.B. der \naktuelle Firefox\n\n&lt;/video&gt;","dialog_width":"960","dialog_height":"623","dialog_title":"Tagesschau in 100s","dialog_flat":true,"dialog_shadow":true,"dialog_modal":true,"icon_src":"/vis.0/iPad/img/tagesschau100_logo_base.png","icon_height":"22","icon_width":"96","icon_top":"50","icon_left":"24","dialog_icon_src":"","signals-cond-0":"==","signals-val-0":true,"signals-icon-0":"/vis/signals/lowbattery.png","signals-icon-size-0":0,"signals-blink-0":false,"signals-horz-0":0,"signals-vert-0":0,"signals-hide-edit-0":false,"signals-cond-1":"==","signals-val-1":true,"signals-icon-1":"/vis/signals/lowbattery.png","signals-icon-size-1":0,"signals-blink-1":false,"signals-horz-1":0,"signals-vert-1":0,"signals-hide-edit-1":false,"signals-cond-2":"==","signals-val-2":true,"signals-icon-2":"/vis/signals/lowbattery.png","signals-icon-size-2":0,"signals-blink-2":false,"signals-horz-2":0,"signals-vert-2":0,"signals-hide-edit-2":false},"style":{"left":"428px","top":"8px","z-index":"20"},"widgetSet":"metro"}]
</code></pre>
<p dir="auto">Der Link zum Video ist im Widget als {Binding} hinterlegt. Die Größen sind für ein iPad Air Landscape ausgelegt.</p>
<p dir="auto">Wenn ich Zeit habe, teste ich noch andere Sendungen von anderen Sendern. ;)</p>
<p dir="auto">Gruß</p>
<p dir="auto">Pix</p>
<p dir="auto">EDIT: Neues Skript vom 11.11.2018 im Spoiler</p>
]]></description><link>https://forum.iobroker.net/post/51470</link><guid isPermaLink="true">https://forum.iobroker.net/post/51470</guid><dc:creator><![CDATA[pix]]></dc:creator><pubDate>Mon, 07 Oct 2019 06:25:11 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Sun, 16 Nov 2025 15:39:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/crunchip" aria-label="Profile: crunchip">@<bdi>crunchip</bdi></a><br />
Danke für den Tipp!<br />
Mit dem Adapter funktioniert es wieder.</p>
]]></description><link>https://forum.iobroker.net/post/1308681</link><guid isPermaLink="true">https://forum.iobroker.net/post/1308681</guid><dc:creator><![CDATA[Kanumouse]]></dc:creator><pubDate>Sun, 16 Nov 2025 15:39:44 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Sun, 16 Nov 2025 14:45:20 GMT]]></title><description><![CDATA[<p dir="auto">Die TGS100 funktioniert auch nicht mehr, wenn man die ganz normal über Alexa aufruft.<br />
Was der Grund ist, ob eingestellt, sonstige technische Probleme, keine Ahnung .</p>
]]></description><link>https://forum.iobroker.net/post/1308660</link><guid isPermaLink="true">https://forum.iobroker.net/post/1308660</guid><dc:creator><![CDATA[padrino]]></dc:creator><pubDate>Sun, 16 Nov 2025 14:45:20 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Sun, 16 Nov 2025 14:38:24 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kanumouse" aria-label="Profile: Kanumouse">@<bdi>Kanumouse</bdi></a> ja mit dem script gibt es Probleme, ggf kannst du es mal mit dem Adapter probieren<br />
<a href="https://forum.iobroker.net/post/1235001">https://forum.iobroker.net/post/1235001</a></p>
]]></description><link>https://forum.iobroker.net/post/1308657</link><guid isPermaLink="true">https://forum.iobroker.net/post/1308657</guid><dc:creator><![CDATA[crunchip]]></dc:creator><pubDate>Sun, 16 Nov 2025 14:38:24 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Sun, 16 Nov 2025 14:32:57 GMT]]></title><description><![CDATA[<p dir="auto">Hat noch jemand Probleme mit dem Link zur "Tagesschau in 100 s"?</p>
]]></description><link>https://forum.iobroker.net/post/1308655</link><guid isPermaLink="true">https://forum.iobroker.net/post/1308655</guid><dc:creator><![CDATA[Kanumouse]]></dc:creator><pubDate>Sun, 16 Nov 2025 14:32:57 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Thu, 23 May 2024 05:55:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a></p>
<p dir="auto">response - die Parameter fuer httpGET richtig genutzt, ich hatte das einfach ersetzt und rumprobiert.</p>
<p dir="auto">Fussball ? Nur EM oder WM, alles andere weniger.. mir sind die, die im Kreis fahren und sich mal im Kreis drehen,  lieber.. erinnert so an die Arbeit..  :D</p>
]]></description><link>https://forum.iobroker.net/post/1161858</link><guid isPermaLink="true">https://forum.iobroker.net/post/1161858</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Thu, 23 May 2024 05:55:44 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Wed, 22 May 2024 19:27:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ilovegym" aria-label="Profile: ilovegym">@<bdi>ilovegym</bdi></a> sagte in <a href="/post/1161803">[gelöst]Frage: Wer hat die "Tagesschau in 100s" eingebunden?</a>:</p>
<blockquote>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a></p>
<p dir="auto">Anständig das response genutzt !</p>
</blockquote>
<p dir="auto">Was meinst du damit?<br />
Habs ja erst seit kurzem umgesetzt; dieses httpget.</p>
<p dir="auto">Dauert halt doch etwas wenn man 100+ Scripte ändern muss.</p>
<p dir="auto">Schaust du kein Fußball ?</p>
]]></description><link>https://forum.iobroker.net/post/1161804</link><guid isPermaLink="true">https://forum.iobroker.net/post/1161804</guid><dc:creator><![CDATA[bahnuhr]]></dc:creator><pubDate>Wed, 22 May 2024 19:27:18 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Wed, 22 May 2024 19:25:52 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a></p>
<p dir="auto">Anständig das response genutzt !</p>
]]></description><link>https://forum.iobroker.net/post/1161803</link><guid isPermaLink="true">https://forum.iobroker.net/post/1161803</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Wed, 22 May 2024 19:25:52 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Wed, 22 May 2024 19:12:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a><br />
Danke, hat geklappt!</p>
]]></description><link>https://forum.iobroker.net/post/1161798</link><guid isPermaLink="true">https://forum.iobroker.net/post/1161798</guid><dc:creator><![CDATA[jwerlsdf]]></dc:creator><pubDate>Wed, 22 May 2024 19:12:05 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Wed, 22 May 2024 19:05:10 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jwerlsdf" aria-label="Profile: jwerlsdf">@<bdi>jwerlsdf</bdi></a><br />
Nehm dies:</p>
<pre><code>/* VIS Tagesschau_Link
parsed die Seite https://www.tagesschau.de/100sekunden/ und sucht nach der URL zum aktuellsten Video
{1}
02.03.2016 erstellt von pix
15.03.2016 zu Javascript Instanz 1 gewechselt
24.09.2016 umbenannt in VIS_Link_Tagesschau
11.11.2018 Skript angepasst und optimiert
03.05.2021 Skript an neue Tagesschau-Seite angepasst und optimiert
*/


const logging = true;
const idURL = 'javascript.0.System.Sonstige.Tagesschau_100';
const idURL2 = 'javascript.0.System.Sonstige.Tagesschau_Stream';
const link = 'http://www.tagesschau.de/multimedia/sendung/tagesschau_in_100_sekunden/';
let film_url; let stream_url;


function findeURL () {   
   try {
        httpGet(link, { responseType: 'text' }, (error, response) =&gt; { 
            if (!error &amp;&amp; response.statusCode == 200) {
               let regexp = /media\.tagesschau\.de\/video\/\d*\/\d*\/TV-\d*-\d*-\d*\.webxl\.h264\.mp4/gm;
               let result_arr = regexp.exec(response.data);
               film_url = result_arr[0];
               setState(idURL, "https://" + film_url);
               if (logging) log ("URL: " + "https://" + film_url);
            } else { 
                log(error, 'error'); 
            } 
        });
    } catch (fehler) {
        log("Fehler (try): " + fehler, "error");
    }
        // nicht schön, aber nochmal für Stream
   try {
        //Tagesschau Stream als HTML
        const link = "https://www.tagesschau.de/multimedia/livestreams/";
        httpGet(link, { responseType: 'text' }, (error, response) =&gt; { 
            if (!error &amp;&amp; response.statusCode == 200) {
               stream_url = "https://www.tagesschau.de/multimedia/livestreams/index~player.html";
               setState(idURL2, stream_url);
               if (logging) log ("HTML: " + stream_url);
            } else { 
                log(error, 'error'); 
            } 
        });
    } catch (fehler) {
        log("Fehler (try): " + fehler, "error");
    }
} 
 
schedule("8 */1 * * *", findeURL); // jedeStunde um 8 nach voll
findeURL();

</code></pre>
]]></description><link>https://forum.iobroker.net/post/1161793</link><guid isPermaLink="true">https://forum.iobroker.net/post/1161793</guid><dc:creator><![CDATA[bahnuhr]]></dc:creator><pubDate>Wed, 22 May 2024 19:05:10 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Wed, 22 May 2024 18:12:57 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/ilovegym" aria-label="Profile: ilovegym">@<bdi>ilovegym</bdi></a><br />
Vielen Dank erst einmal. Ich bekomme aber folgenden Fehler:</p>
<p dir="auto">(script.js.System_Tagesschau_100_Sekunden:27:37)</p>
<p dir="auto">Dementsprechend wird kein link bei tagesschau sondern nur bei tagesschau 100s geschrieben.</p>
]]></description><link>https://forum.iobroker.net/post/1161777</link><guid isPermaLink="true">https://forum.iobroker.net/post/1161777</guid><dc:creator><![CDATA[jwerlsdf]]></dc:creator><pubDate>Wed, 22 May 2024 18:12:57 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Wed, 22 May 2024 16:24:21 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jwerlsdf" aria-label="Profile: jwerlsdf">@<bdi>jwerlsdf</bdi></a></p>
<p dir="auto">ja, ne quick&amp;dirty Variante mit dem Script von <a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a> , geht aber:</p>
<pre><code>/* VIS Tagesschau_Link
parsed die Seite https://www.tagesschau.de/100sekunden/ und sucht nach der URL zum aktuellsten Video
{1}
02.03.2016 erstellt von pix
15.03.2016 zu Javascript Instanz 1 gewechselt
24.09.2016 umbenannt in VIS_Link_Tagesschau
11.11.2018 Skript angepasst und optimiert
03.05.2021 Skript an neue Tagesschau-Seite angepasst und optimiert
*/
 
 
const logging = true;
const idURL = '0_userdata.0.vis.Tagesschau'/*Link zu Tagesschau in 100s*/;
const idURL2 = '0_userdata.0.vis.Tagesschau100s'/*Link zu Tagesschau in 100s*/;
const link = 'http://www.tagesschau.de/multimedia/sendung/tagesschau_in_100_sekunden/';
let film_url; let stream_url;
 
 
function findeURL () {   
   //let request = require('request');
   try {
       httpGet(link, function (error, response, body) {
           if (!error &amp;&amp; response.statusCode == 200) {
               let regexp = /media\.tagesschau\.de\/video\/\d*\/\d*\/TV-\d*-\d*-\d*\.webxl\.h264\.mp4/gm;
               let result_arr = regexp.exec(body);
               film_url = result_arr[0];
               setState(idURL, "https://" + film_url);
               if (logging) log ("URL: " + "https://" + film_url);
           } else  { // Error beim Einlesen
               log(error, 'error'); 
           }
       });   // Ende request 
   } catch (fehler) {
       log("Fehler (try): " + fehler, "error");
   }
      // nicht schön, aber nochmal für Stream
   try {
       //Tagesschau Stream als HTML
       const link = "https://www.tagesschau.de/multimedia/livestreams/";
       //let regexp = /https:\/\/www\.tagesschau\.de\/multimedia\/livestreams\/livestream\d*\/index~player\.html/gm;
       //let regexp = /https:\/\/www\.tagesschau\.de\/multimedia\/livestreams\/livestream1\d*-\d*~player\.html/gm;
       httpGet(link, function (error, response, body) {
           if (!error &amp;&amp; response.statusCode == 200) {
               //let result_arr = regexp.exec(body);
               //stream_url = result_arr[0];
               //log ("hier1 " + stream_url);
               stream_url = "https://www.tagesschau.de/multimedia/livestreams/index~player.html";
               setState(idURL2, stream_url);
               if (logging) log ("HTML: " + stream_url);
           } else  { // Error beim Einlesen
               log(error, 'error'); 
           }
       });   // Ende request 
   } catch (fehler) {
       log("Fehler (try): " + fehler, "error");
   }
 
} 
 
schedule('8 */1 * * *', findeURL); // jedeStunde um 8 nach voll
findeURL();
 

</code></pre>
]]></description><link>https://forum.iobroker.net/post/1161707</link><guid isPermaLink="true">https://forum.iobroker.net/post/1161707</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Wed, 22 May 2024 16:24:21 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Wed, 15 May 2024 14:42:09 GMT]]></title><description><![CDATA[<p dir="auto">Hallo, das Skript funktioniert noch sehr gut. Hat jemand dieses aber bereits nach httpGet umgebaut?</p>
]]></description><link>https://forum.iobroker.net/post/1159777</link><guid isPermaLink="true">https://forum.iobroker.net/post/1159777</guid><dc:creator><![CDATA[jwerlsdf]]></dc:creator><pubDate>Wed, 15 May 2024 14:42:09 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Tue, 07 Nov 2023 14:26:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/denjo" aria-label="Profile: denjo">@<bdi>denjo</bdi></a> sagte in <a href="/post/1075892">[gelöst]Frage: Wer hat die "Tagesschau in 100s" eingebunden?</a>:</p>
<blockquote>
<p dir="auto">der?</p>
</blockquote>
<p dir="auto">Nein,<br />
siehe #2</p>
<p dir="auto">Hast du den thread überhaupt gelesen ?</p>
]]></description><link>https://forum.iobroker.net/post/1075899</link><guid isPermaLink="true">https://forum.iobroker.net/post/1075899</guid><dc:creator><![CDATA[bahnuhr]]></dc:creator><pubDate>Tue, 07 Nov 2023 14:26:26 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Tue, 07 Nov 2023 14:19:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a></p>
<p dir="auto">der?<br />
<img src="/assets/uploads/files/1699366730021-90d8bcd8-8ab9-41cc-ac52-6869baf48d9f-image.png" alt="90d8bcd8-8ab9-41cc-ac52-6869baf48d9f-image.png" class=" img-fluid img-markdown" /></p>
<p dir="auto">und wo muss ich das object eintragen??</p>
<p dir="auto"><img src="/assets/uploads/files/1699366781138-157c515d-2bce-4890-b8ba-f3db7e0fa7e9-image.png" alt="157c515d-2bce-4890-b8ba-f3db7e0fa7e9-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/post/1075892</link><guid isPermaLink="true">https://forum.iobroker.net/post/1075892</guid><dc:creator><![CDATA[denjo]]></dc:creator><pubDate>Tue, 07 Nov 2023 14:19:44 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Tue, 07 Nov 2023 14:09:54 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a> ich bin wohl blind, finde das widget nicht. kannst du mir mal ein bild vom widget zeigen?</p>
]]></description><link>https://forum.iobroker.net/post/1075882</link><guid isPermaLink="true">https://forum.iobroker.net/post/1075882</guid><dc:creator><![CDATA[denjo]]></dc:creator><pubDate>Tue, 07 Nov 2023 14:09:54 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Tue, 07 Nov 2023 14:03:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/denjo" aria-label="Profile: denjo">@<bdi>denjo</bdi></a> sagte in <a href="/post/1075815">[gelöst]Frage: Wer hat die "Tagesschau in 100s" eingebunden?</a>:</p>
<blockquote>
<p dir="auto">video nicht aktualisiert.</p>
</blockquote>
<p dir="auto">bei mir schon.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/denjo" aria-label="Profile: denjo">@<bdi>denjo</bdi></a> sagte in <a href="/post/1075815">[gelöst]Frage: Wer hat die "Tagesschau in 100s" eingebunden?</a>:</p>
<blockquote>
<p dir="auto">irgendwie einstellen das das video erst startet</p>
</blockquote>
<p dir="auto">Na, dann nehm doch mal autoplay raus. Oder wie hast du es eingebunden.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/denjo" aria-label="Profile: denjo">@<bdi>denjo</bdi></a> sagte in <a href="/post/1075852">[gelöst]Frage: Wer hat die "Tagesschau in 100s" eingebunden?</a>:</p>
<blockquote>
<p dir="auto">welches muss ich da jetzt nehmen???</p>
</blockquote>
<p dir="auto">welches hast du genommen?</p>
<p dir="auto">ich habe:<br />
<img src="/assets/uploads/files/1699365811479-9f2c03e6-8e06-4fb2-b955-8936dfae5a59-image.png" alt="9f2c03e6-8e06-4fb2-b955-8936dfae5a59-image.png" class=" img-fluid img-markdown" /></p>
]]></description><link>https://forum.iobroker.net/post/1075875</link><guid isPermaLink="true">https://forum.iobroker.net/post/1075875</guid><dc:creator><![CDATA[bahnuhr]]></dc:creator><pubDate>Tue, 07 Nov 2023 14:03:33 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Tue, 07 Nov 2023 13:33:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a> es liegt wohl am widget, welches muss ich da jetzt nehmen???</p>
]]></description><link>https://forum.iobroker.net/post/1075852</link><guid isPermaLink="true">https://forum.iobroker.net/post/1075852</guid><dc:creator><![CDATA[denjo]]></dc:creator><pubDate>Tue, 07 Nov 2023 13:33:44 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Tue, 07 Nov 2023 12:35:55 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a> hallo, bei mir wird das video nicht aktualisiert. und kann man irgendwie einstellen das das video erst startet wenn ich auf play drücke und nicht wenn die seite neu gestartet wird?</p>
]]></description><link>https://forum.iobroker.net/post/1075815</link><guid isPermaLink="true">https://forum.iobroker.net/post/1075815</guid><dc:creator><![CDATA[denjo]]></dc:creator><pubDate>Tue, 07 Nov 2023 12:35:55 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Tue, 25 Jul 2023 08:49:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kanumouse" aria-label="Profile: kanumouse">@<bdi>kanumouse</bdi></a> sagte in <a href="/post/1020790">[gelöst]Frage: Wer hat die "Tagesschau in 100s" eingebunden?</a>:</p>
<blockquote>
<p dir="auto">Ok, dein Script läuft fehlerfrei.</p>
</blockquote>
<p dir="auto">Na klar, was sonst.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kanumouse" aria-label="Profile: kanumouse">@<bdi>kanumouse</bdi></a> sagte in <a href="/post/1020790">[gelöst]Frage: Wer hat die "Tagesschau in 100s" eingebunden?</a>:</p>
<blockquote>
<p dir="auto">Ich habe am Anfang noch ein paar Zeilen zum Erstellen der States eingefügt.</p>
</blockquote>
<p dir="auto">brauchst du nicht, hast sie doch schon erstellt.</p>
<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kanumouse" aria-label="Profile: kanumouse">@<bdi>kanumouse</bdi></a> sagte in <a href="/post/1020790">[gelöst]Frage: Wer hat die "Tagesschau in 100s" eingebunden?</a>:</p>
<blockquote>
<p dir="auto">muss ich aber noch einmal analysieren.</p>
</blockquote>
<p dir="auto">genau</p>
]]></description><link>https://forum.iobroker.net/post/1020794</link><guid isPermaLink="true">https://forum.iobroker.net/post/1020794</guid><dc:creator><![CDATA[bahnuhr]]></dc:creator><pubDate>Tue, 25 Jul 2023 08:49:25 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Tue, 25 Jul 2023 08:37:25 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a></p>
<p dir="auto">Ok, dein Script läuft fehlerfrei. Ich habe am Anfang noch ein paar Zeilen zum Erstellen der States eingefügt.<br />
Im Moment kann ich noch nicht erkennen, wo der Fehler bei meinem Script gelegen hat. Bei deinem Script sind sind ein paar Zeilen beim Einlesen des Streams auskommentiert - vielleicht liegt es daran - muss ich aber noch einmal analysieren.<br />
Danke!</p>
]]></description><link>https://forum.iobroker.net/post/1020790</link><guid isPermaLink="true">https://forum.iobroker.net/post/1020790</guid><dc:creator><![CDATA[Kanumouse]]></dc:creator><pubDate>Tue, 25 Jul 2023 08:37:25 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Tue, 25 Jul 2023 08:34:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/kanumouse" aria-label="Profile: kanumouse">@<bdi>kanumouse</bdi></a></p>
]]></description><link>https://forum.iobroker.net/post/1020787</link><guid isPermaLink="true">https://forum.iobroker.net/post/1020787</guid><dc:creator><![CDATA[Kanumouse]]></dc:creator><pubDate>Tue, 25 Jul 2023 08:34:11 GMT</pubDate></item><item><title><![CDATA[Reply to [gelöst]Frage: Wer hat die &quot;Tagesschau in 100s&quot; eingebunden? on Tue, 25 Jul 2023 08:17:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/bahnuhr" aria-label="Profile: bahnuhr">@<bdi>bahnuhr</bdi></a><br />
Danke, werde ich mal versuchen!</p>
]]></description><link>https://forum.iobroker.net/post/1020780</link><guid isPermaLink="true">https://forum.iobroker.net/post/1020780</guid><dc:creator><![CDATA[Kanumouse]]></dc:creator><pubDate>Tue, 25 Jul 2023 08:17:18 GMT</pubDate></item></channel></rss>