24 lines
1.2 KiB
HTML
24 lines
1.2 KiB
HTML
<?xml version="1.0" encoding="UTF-8" ?>n")
|
|
<rss version="2.0">
|
|
<channel>
|
|
<title>{{ stream.name }}</title>
|
|
<description>Stream ID: {{ stream.id }}</description>
|
|
<link>http://192.168.1.200:30000/api/getPodcast?id={{ stream.id }}</link>
|
|
<ttl>60</ttl>
|
|
<!--<image><url>http://192.168.1.200:30000/api/getImage?id={{ stream.id }}</url><title>{{ stream.name }}</title><link>http://192.168.1.200:30000/api/getPodcast?id={{ stream.id }}</link></image>-->
|
|
<copyright>Streamrecord 2014</copyright>
|
|
<lastBuildDate>{{ builddate }}</lastBuildDate>
|
|
<pubDate>{{ builddate }}</pubDate>
|
|
<webMaster>streamrecord@raid.local</webMaster>
|
|
{% for file in stream.files %}
|
|
<item>
|
|
<title>{{ file.filename }}</title>
|
|
<description>{{ file.mbytes }} MB</description>
|
|
<link>http://192.168.1.200:30000/api/download?id={{ stream.id }}&fn={{ file.filenum }}</link>
|
|
<guid>http://192.168.1.200:30000/api/download?id={{ stream.id }}&fn={{ file.filenum }}</guid>
|
|
<pubDate>{{ file.date }}</pubDate>
|
|
<enclosure url="http://192.168.1.200:30000/api/download?id={{ stream.id }}&fn={{ file.filenum }}" length="{{ file.bytes }}" type="audio/mpeg" />
|
|
</item>
|
|
{% endfor %}
|
|
</channel>
|
|
</rss> |