sagiadinos / garlic-player

Digital Signage Player based on SMIL
https://garlic-player.com
GNU Affero General Public License v3.0
88 stars 17 forks source link

The use of a text field (TWeb) requires another element prior to it #7

Closed skinkie closed 4 years ago

skinkie commented 4 years ago

Describe the bug When trying to fetch information remotely for a text field, this information will only get loaded if another element runs before it.

To Reproduce Steps to reproduce the behavior:

<?xml version="1.0" encoding="utf-8" standalone="yes"?>
<smil>
        <head>
                <meta name="title" content="Simple SMIL for testing images in par and multizone" />
                <layout>
                        <root-layout id="display:0" width="400" height="300" backgroundColor="#00b140"/>
                        <region regionName="screen" top="0" left="0" width="400" height="300" z-index="1" />
                </layout>
        </head>
        <body>
                <!-- <img region="screen" xml:id="start" src="http://stefan.konink.de/i/oog.jpg" dur="4s" fit="meetbest" /> -->
                <text region="screen" xml:id="text" src="http://stefan.konink.de/test.html" dur="100s" fit="meetbest" />
        </body>
 </smil>

Expected behavior I would expect to have the text region loaded, this only occurs if an element is in before it.