-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathaddon.xml
More file actions
46 lines (43 loc) · 2.32 KB
/
addon.xml
File metadata and controls
46 lines (43 loc) · 2.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="plugin.video.playthis" name="PlayThis" version="5.0.3" provider-name="anxdpanic">
<requires>
<import addon="xbmc.python" version="2.24.0"/>
<import addon="script.module.six" version="1.11.0"/>
<import addon="script.module.youtube.dl" version="18.619.0"/>
<import addon="plugin.video.youtube" version="6.2.0" optional="true"/>
</requires>
<extension point="xbmc.python.pluginsource" library="resources/lib/__run__.py">
<provides>executable video audio image</provides>
</extension>
<extension point="xbmc.addon.metadata">
<news>
[fix] Kodi 19 not working
[fix] remove LOGNOTICE AND LOGSEVERE, both removed in Kodi 19
[fix] use xbmcvfs.translatePath when available
[fix] mitigate busy dialog related crashes
</news>
<assets>
<icon>icon.png</icon>
<fanart>fanart.jpg</fanart>
<screenshot>resources/media/screenshots/screenshot000.jpg</screenshot>
<screenshot>resources/media/screenshots/screenshot001.jpg</screenshot>
<screenshot>resources/media/screenshots/screenshot002.jpg</screenshot>
<screenshot>resources/media/screenshots/screenshot003.jpg</screenshot>
<screenshot>resources/media/screenshots/screenshot004.jpg</screenshot>
</assets>
<summary lang="en_GB">Find and resolve media from a url to play or open.</summary>
<description lang="en_GB">
PlayThis will attempt to find and resolve* media from a url to play or open. A history list is available for future use, exporting to .m3u/.strm** and sending to a remote PlayThis add-on. Supports video, audio, images and executable***.
* resolves using youtube-dl
** exported .m3u/.strm is only usable in Kodi w/ PlayThis installed
*** 'executable' items are urls with potential results available through scraping
Companion browser extension available on the Chrome Web Store and Mozilla's AMO Gallery
Artwork by @konsumer420
</description>
<platform>all</platform>
<license>GPL-3.0-only</license>
<website>https://github.com/anxdpanic/plugin.video.playthis#playthis</website>
<source>https://github.com/anxdpanic/plugin.video.playthis</source>
<reuselanguageinvoker>true</reuselanguageinvoker>
</extension>
</addon>