Skip to content

Commit dd3f636

Browse files
committed
v1.0.2
- new Livestream (timeshift) - added setting to use old livestream format - LF conversion
1 parent 951be88 commit dd3f636

File tree

10 files changed

+2366
-2339
lines changed

10 files changed

+2366
-2339
lines changed

README.md

Lines changed: 92 additions & 92 deletions
Original file line numberDiff line numberDiff line change
@@ -1,92 +1,92 @@
1-
# ORF ON Addon for Kodi (plugin.video.orfon)
2-
3-
ORF ON is an addon that provides access to the ORF ON Video Platform (Austrian Television).
4-
5-
[![Kodi version](https://img.shields.io/badge/kodi%20versions-20--21-blue)](https://kodi.tv/)
6-
7-
8-
Current Features
9-
----------------
10-
* Livestream
11-
* Shows
12-
* Schedule
13-
* Search
14-
* DRM Streams
15-
* Accessibility Broadcasts
16-
* Simple IPTV Integration
17-
18-
Todos
19-
----------------
20-
- [X] Subtitles
21-
- [X] Add Settings
22-
- [X] Add option to show related content
23-
- [X] Add a main menu entry for latest uploads
24-
- [X] Kodi translation still missing
25-
- [X] Accessibility
26-
27-
28-
Known Issues
29-
------------
30-
* A curl bug (http2) on KODI 19 prevents the streaming therefore the Addon is only supported on KODI 20+ (A workaround on the advancedsettings.xml seems to fix the issue, but further testing will be required)
31-
32-
```
33-
<advancedsettings version="1.0">
34-
<network>
35-
<disablehttp2>true</disablehttp2>
36-
</network>
37-
</advancedsettings>
38-
```
39-
40-
Simple IPTV Integration
41-
-----------------
42-
43-
Playlist Content
44-
```
45-
#EXTINF:-1 tvg-name="ORF 1" tvg-id="orf1" group-title="ORF",ORF 1
46-
plugin://plugin.video.orfon/pvr/orf1
47-
48-
#EXTINF:-1 tvg-name="ORF 2" tvg-id="orf2" group-title="ORF",ORF 2
49-
plugin://plugin.video.orfon/pvr/orf2
50-
51-
#EXTINF:-1 tvg-name="ORF 3" tvg-id="orf3" group-title="ORF",ORF 3
52-
plugin://plugin.video.orfon/pvr/orf3
53-
54-
#EXTINF:-1 tvg-name="ORF Sport+" tvg-id="orfs" group-title="ORF",ORF Sport+
55-
plugin://plugin.video.orfon/pvr/orfs
56-
57-
#EXTINF:-1 tvg-name="ORF Kids" tvg-id="orfkids" group-title="ORF",ORF Kids
58-
plugin://plugin.video.orfon/pvr/orfkids
59-
60-
#EXTINF:-1 tvg-name="ORF 2 Burgenland" tvg-id="orf2b" group-title="ORF",ORF 2 Burgenland
61-
plugin://plugin.video.orfon/pvr/orf2b
62-
63-
#EXTINF:-1 tvg-name="ORF 2 Steiermark" tvg-id="orf2stmk" group-title="ORF",ORF 2 Steiermark
64-
plugin://plugin.video.orfon/pvr/orf2stmk
65-
66-
#EXTINF:-1 tvg-name="ORF 2 Wien" tvg-id="orf2w" group-title="ORF",ORF 2 Wien
67-
plugin://plugin.video.orfon/pvr/orf2w
68-
69-
#EXTINF:-1 tvg-name="ORF 2 Oberösterreich" tvg-id="orf2ooe" group-title="ORF",ORF 2 Oberösterreich
70-
plugin://plugin.video.orfon/pvr/orf2ooe
71-
72-
#EXTINF:-1 tvg-name="ORF 2 Kärnten" tvg-id="orf2k" group-title="ORF",ORF 2 Kärnten
73-
plugin://plugin.video.orfon/pvr/orf2k
74-
75-
#EXTINF:-1 tvg-name="ORF 2 Niederösterreich" tvg-id="orf2n" group-title="ORF",ORF 2 Niederösterreich
76-
plugin://plugin.video.orfon/pvr/orf2n
77-
78-
#EXTINF:-1 tvg-name="ORF 2 Salzburg" tvg-id="orf2s" group-title="ORF",ORF 2 Salzburg
79-
plugin://plugin.video.orfon/pvr/orf2s
80-
81-
#EXTINF:-1 tvg-name="ORF 2 Vorarlberg" tvg-id="orf2v" group-title="ORF",ORF 2 Vorarlberg
82-
plugin://plugin.video.orfon/pvr/orf2v
83-
84-
#EXTINF:-1 tvg-name="ORF 2 Tirol" tvg-id="orf2t" group-title="ORF",ORF 2 Tirol
85-
plugin://plugin.video.orfon/pvr/orf2t
86-
87-
```
88-
89-
90-
Legal
91-
-----
92-
This addon provides access to videos on the ORF ON Website but is not endorsed, certified or otherwise approved in any way by ORF.
1+
# ORF ON Addon for Kodi (plugin.video.orfon)
2+
3+
ORF ON is an addon that provides access to the ORF ON Video Platform (Austrian Television).
4+
5+
[![Kodi version](https://img.shields.io/badge/kodi%20versions-20--21-blue)](https://kodi.tv/)
6+
7+
8+
Current Features
9+
----------------
10+
* Livestream
11+
* Shows
12+
* Schedule
13+
* Search
14+
* DRM Streams
15+
* Accessibility Broadcasts
16+
* Simple IPTV Integration
17+
18+
Todos
19+
----------------
20+
- [X] Subtitles
21+
- [X] Add Settings
22+
- [X] Add option to show related content
23+
- [X] Add a main menu entry for latest uploads
24+
- [X] Kodi translation still missing
25+
- [X] Accessibility
26+
27+
28+
Known Issues
29+
------------
30+
* A curl bug (http2) on KODI 19 prevents the streaming therefore the Addon is only supported on KODI 20+ (A workaround on the advancedsettings.xml seems to fix the issue, but further testing will be required)
31+
32+
```
33+
<advancedsettings version="1.0">
34+
<network>
35+
<disablehttp2>true</disablehttp2>
36+
</network>
37+
</advancedsettings>
38+
```
39+
40+
Simple IPTV Integration
41+
-----------------
42+
43+
Playlist Content
44+
```
45+
#EXTINF:-1 tvg-name="ORF 1" tvg-id="orf1" group-title="ORF",ORF 1
46+
plugin://plugin.video.orfon/pvr/orf1
47+
48+
#EXTINF:-1 tvg-name="ORF 2" tvg-id="orf2" group-title="ORF",ORF 2
49+
plugin://plugin.video.orfon/pvr/orf2
50+
51+
#EXTINF:-1 tvg-name="ORF 3" tvg-id="orf3" group-title="ORF",ORF 3
52+
plugin://plugin.video.orfon/pvr/orf3
53+
54+
#EXTINF:-1 tvg-name="ORF Sport+" tvg-id="orfs" group-title="ORF",ORF Sport+
55+
plugin://plugin.video.orfon/pvr/orfs
56+
57+
#EXTINF:-1 tvg-name="ORF Kids" tvg-id="orfkids" group-title="ORF",ORF Kids
58+
plugin://plugin.video.orfon/pvr/orfkids
59+
60+
#EXTINF:-1 tvg-name="ORF 2 Burgenland" tvg-id="orf2b" group-title="ORF",ORF 2 Burgenland
61+
plugin://plugin.video.orfon/pvr/orf2b
62+
63+
#EXTINF:-1 tvg-name="ORF 2 Steiermark" tvg-id="orf2stmk" group-title="ORF",ORF 2 Steiermark
64+
plugin://plugin.video.orfon/pvr/orf2stmk
65+
66+
#EXTINF:-1 tvg-name="ORF 2 Wien" tvg-id="orf2w" group-title="ORF",ORF 2 Wien
67+
plugin://plugin.video.orfon/pvr/orf2w
68+
69+
#EXTINF:-1 tvg-name="ORF 2 Oberösterreich" tvg-id="orf2ooe" group-title="ORF",ORF 2 Oberösterreich
70+
plugin://plugin.video.orfon/pvr/orf2ooe
71+
72+
#EXTINF:-1 tvg-name="ORF 2 Kärnten" tvg-id="orf2k" group-title="ORF",ORF 2 Kärnten
73+
plugin://plugin.video.orfon/pvr/orf2k
74+
75+
#EXTINF:-1 tvg-name="ORF 2 Niederösterreich" tvg-id="orf2n" group-title="ORF",ORF 2 Niederösterreich
76+
plugin://plugin.video.orfon/pvr/orf2n
77+
78+
#EXTINF:-1 tvg-name="ORF 2 Salzburg" tvg-id="orf2s" group-title="ORF",ORF 2 Salzburg
79+
plugin://plugin.video.orfon/pvr/orf2s
80+
81+
#EXTINF:-1 tvg-name="ORF 2 Vorarlberg" tvg-id="orf2v" group-title="ORF",ORF 2 Vorarlberg
82+
plugin://plugin.video.orfon/pvr/orf2v
83+
84+
#EXTINF:-1 tvg-name="ORF 2 Tirol" tvg-id="orf2t" group-title="ORF",ORF 2 Tirol
85+
plugin://plugin.video.orfon/pvr/orf2t
86+
87+
```
88+
89+
90+
Legal
91+
-----
92+
This addon provides access to videos on the ORF ON Website but is not endorsed, certified or otherwise approved in any way by ORF.

addon.xml

Lines changed: 34 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,34 @@
1-
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2-
<addon id="plugin.video.orfon" name="ORF ON" version="1.0.1+beta" provider-name="s0fak1ng">
3-
<requires>
4-
<import addon="xbmc.python" version="3.0.0"/>
5-
<import addon="script.module.routing" version="0.2.3"/>
6-
<import addon="script.module.inputstreamhelper" version="0.5.0"/>
7-
</requires>
8-
<extension point="xbmc.python.pluginsource" library="resources/lib/default.py">
9-
<provides>video</provides>
10-
</extension>
11-
<extension point="xbmc.python.module" library="resources/lib/"/>
12-
<extension point="xbmc.addon.metadata">
13-
<platform>all</platform>
14-
<language>de en</language>
15-
<summary lang="de_DE">ORF ON</summary>
16-
<summary lang="en_GB">ORF ON</summary>
17-
<description lang="de_DE">ORF ON - Dieses Plugin ermöglicht den Zugriff auf den österreichischen Streamingdienst ORF ON</description>
18-
<description lang="en_GB">ORF ON - This plugin provides access to the Austrian ORF ON streaming service</description>
19-
<license>GPL-2.0-only</license>
20-
<forum>https://forum.kodi.tv/</forum>
21-
<email>sofaking@gettingmoney.at</email>
22-
<website>https://on.orf.at</website>
23-
<source>https://github.com/s0faking/plugin.video.orfon</source>
24-
<assets>
25-
<icon>resources/icon.png</icon>
26-
<fanart>resources/fanart.jpg</fanart>
27-
</assets>
28-
<news>v1.0.1 beta
29-
- fix routing requirement
30-
- show segment option added
31-
- cache reload fix
32-
- related video option
33-
- fix UA stream errors
34-
</news>
35-
</extension>
36-
</addon>
1+
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
2+
<addon id="plugin.video.orfon" name="ORF ON" version="1.0.2" provider-name="s0fak1ng">
3+
<requires>
4+
<import addon="xbmc.python" version="3.0.0"/>
5+
<import addon="script.module.routing" version="0.2.3"/>
6+
<import addon="script.module.inputstreamhelper" version="0.5.0"/>
7+
</requires>
8+
<extension point="xbmc.python.pluginsource" library="resources/lib/default.py">
9+
<provides>video</provides>
10+
</extension>
11+
<extension point="xbmc.python.module" library="resources/lib/"/>
12+
<extension point="xbmc.addon.metadata">
13+
<platform>all</platform>
14+
<language>de en</language>
15+
<summary lang="de_DE">ORF ON</summary>
16+
<summary lang="en_GB">ORF ON</summary>
17+
<description lang="de_DE">ORF ON - Dieses Plugin ermöglicht den Zugriff auf den österreichischen Streamingdienst ORF ON</description>
18+
<description lang="en_GB">ORF ON - This plugin provides access to the Austrian ORF ON streaming service</description>
19+
<license>GPL-2.0-only</license>
20+
<forum>https://forum.kodi.tv/</forum>
21+
<email>sofaking@gettingmoney.at</email>
22+
<website>https://on.orf.at</website>
23+
<source>https://github.com/s0faking/plugin.video.orfon</source>
24+
<assets>
25+
<icon>resources/icon.png</icon>
26+
<fanart>resources/fanart.jpg</fanart>
27+
</assets>
28+
<news>v1.0.2
29+
- new Livestream (timeshift)
30+
- added setting to use old livestream format
31+
- LF conversion
32+
</news>
33+
</extension>
34+
</addon>

changelog.txt

Lines changed: 16 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
1-
v1.0.1 beta (2023-06-05)
2-
- fix routing requirement
3-
- show segment option added
4-
- cache reload fix
5-
- related video option
6-
- fix UA stream errors (#6)
7-
8-
9-
10-
v1.0.0 beta (2023-01-06)
11-
- beta version
12-
- most stuff is working but everything needs to be tested a little more
13-
- orf on is still in beta so stuff might change until the final release in april 2024
1+
v1.0.2 (2024-06-08)
2+
- new Livestream (timeshift)
3+
- added setting to use old livestream format
4+
- LF conversion
5+
6+
v1.0.1 beta (2024-06-05)
7+
- fix routing requirement
8+
- show segment option added
9+
- cache reload fix
10+
- related video option
11+
- fix UA stream errors (#6)
12+
13+
v1.0.0 beta (2024-01-06)
14+
- beta version
15+
- most stuff is working but everything needs to be tested a little more
16+
- orf on is still in beta so stuff might change until the final release in april 2024
1417
- translation stuff is still missing

0 commit comments

Comments
 (0)