Hi belltown, as the channel reads my feed XML file and if I wanted to add something to the end of the streamUrl, like an authentication code for streams that contain 'HD' in the title, EG;
<item sdImg="pkg:/images/Tsc214x144Sd.png" hdImg="pkg:/images/Tsc290x218Hd.png">
<title>Stream HD</title>
<description></description>
<streamFormat>hls</streamFormat>
<media>
<streamQuality>HD</streamQuality>
<streamBitrate>0</streamBitrate>
<streamUrl>http://stream.m3u8?id=</streamUrl>
</media>
<synopsis></synopsis>
<genres></genres>
<live>True</live>
</item>
Where and which file can I modify to add this code in? The 'authentication code' is generated elsewhere so I cannot add it directly to the feed XMl file beforehand. Like for example, the XML is read and if the title has HD in it, then streamUrl = streamUrl + authentication code
Thank you