-
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathaddon.xml
More file actions
38 lines (38 loc) · 3.18 KB
/
Copy pathaddon.xml
File metadata and controls
38 lines (38 loc) · 3.18 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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<addon id="script.service.playbackresumer" name="Playback Resumer" version="2.2.0" provider-name="bossanova808, bradvido88">
<requires>
<import addon="xbmc.python" version="3.0.0"/>
<import addon="script.module.bossanova808" version="1.0.3"/>
</requires>
<extension point="xbmc.service" library="default.py" />
<extension point="xbmc.addon.metadata">
<summary lang="en_GB">Periodically sets the resume point of videos and can automatically resume last played video if Kodi crashes.</summary>
<summary lang="sv_SE">Ställer in återuppspelningspunkten för videor med jämna mellanrum och kan automatiskt återuppspela den senast spelade videon om Kodi kraschar.</summary>
<summary lang="zh_CN">定期保存视频播放进度,Kodi 崩溃后可自动恢复上次播放内容。</summary>
<description lang="en_GB">
Runs as a service and will periodically update the resume point while videos are playing, so you can re-start from where you were in the event of a crash. It can also automatically resume a video if Kodi was shutdown while playing it. See setting to configure how often the resume point is set, and whether to automatically resume.
</description>
<description lang="sv_SE">
Körs som en tjänst och uppdaterar regelbundet återuppspelningspunkten vid spelning medan videor spelas upp, så att du kan starta om från där du var i händelse av ett krascher. Den kan också automatiskt återuppspela en video om Kodi stängdes av vid spelning. Se inställningarna för att konfigurera hur ofta återuppspelningspunkten ska ställas in och om den ska återuppspelas automatiskt.
</description>
<description lang="zh_CN">
以后台服务形式运行,播放视频时会定期更新播放进度。当程序意外崩溃后,可从上次观看位置继续播放。同时支持在播放期间非正常关闭 Kodi 时自动续播。你可在插件设置中调整进度保存频率,以及开关自动续播功能。
</description>
<platform>all</platform>
<license>GPL-3.0-only</license>
<website>https://github.com/bossanova808/script.service.playbackresumer</website>
<source>https://github.com/bossanova808/script.service.playbackresumer</source>
<forum>https://forum.kodi.tv/showthread.php?tid=355383</forum>
<email>bossanova808@gmail.com</email>
<news>v2.2.0
- Major internal rewrite: playback tracking and resume now use the shared Playback class from script.module.bossanova808
- Startup resume now uses Kodi's own StartOffset/PlayMedia resume mechanism instead of a manual seek after playback starts, fixing a range of resume-reliability issues
- Added proper support for resuming PVR live TV (retunes the channel) and PVR recordings (resumes from Kodi/the PVR backend's own tracked position) on startup, both with correct channel/playback controls
- Resume notifications now show a timestamp, distinguish live TV/recordings from other video, note that retuning live TV may take a few seconds, and show the item's artwork like Switchback's do
- Requires script.module.bossanova808 1.0.3
</news>
<assets>
<icon>icon.png</icon>
</assets>
</extension>
</addon>