fix
parent
f377c6a19c
commit
a38cbbef68
|
@ -286,7 +286,7 @@ class AnteoPlayer(xbmc.Player):
|
|||
log('[AnteoPlayer]: ************************************* break')
|
||||
break
|
||||
log('[AnteoPlayer]: ************************************* GO NEXT?')
|
||||
if self.next_dl and isinstance(self.next_contentId, int) and self.iterator == 100:
|
||||
if self.next_dl and self.next_contentId != False and isinstance(self.next_contentId, int) and self.iterator == 100:
|
||||
self.contentId = self.next_contentId
|
||||
continue
|
||||
log('[AnteoPlayer]: ************************************* NO! break')
|
||||
|
@ -438,10 +438,10 @@ class AnteoPlayer(xbmc.Player):
|
|||
def setup_nextep(self):
|
||||
try:
|
||||
if self.get("url2"):
|
||||
debug("url2")
|
||||
debug("[setup_nextep]: url2")
|
||||
self.ids_video = urllib.unquote_plus(self.get("url2")).split(',')
|
||||
else:
|
||||
debug("not url2")
|
||||
debug("[setup_nextep]: not url2")
|
||||
self.ids_video = self.get_ids()
|
||||
except:
|
||||
pass
|
||||
|
@ -461,7 +461,6 @@ class AnteoPlayer(xbmc.Player):
|
|||
label = os.path.basename(file_status.name)
|
||||
self.basename = label
|
||||
self.seeding_run = False
|
||||
subtitles = None
|
||||
listitem = xbmcgui.ListItem(label, path=url)
|
||||
|
||||
if self.next_dl:
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<addon id="plugin.video.torrenter" name="Torrenter" version="2.4.3a" provider-name="DiMartino">
|
||||
<addon id="plugin.video.torrenter" name="Torrenter" version="2.4.4" provider-name="DiMartino">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="2.1.0"/>
|
||||
<import addon="script.module.libtorrent"/>
|
||||
|
@ -14,12 +14,12 @@
|
|||
<platform>all</platform>
|
||||
<summary lang='en'>Plugin helps you to watch videos from p2p torrent-networks, without full predownload.
|
||||
</summary>
|
||||
<description lang='en'>Plugin helps you to watch videos from p2p torrent-networks, without full predownload (uses python-libtorrent or Ace Stream). It also can add, control torrents and play downloaded files with external torrent-client (uTorrent, Transmisson, Vuse, Deluge) or python-libtorrent.
|
||||
<description lang='en'>It also can add, control torrents and play downloaded files with external torrent-client (uTorrent, Transmisson, Vuse, Deluge, qBittorrent) or python-libtorrent.
|
||||
</description>
|
||||
<disclaimer lang='en'>GNU GPLv3 http://www.gnu.org/licenses/</disclaimer>
|
||||
<summary lang='ru'>Плагин позволяет просматривать видео из пиринговых торрент-сетей, не дожидаясь полного скачивания.
|
||||
</summary>
|
||||
<description lang='ru'>Плагин позволяет просматривать видео из пиринговых торрент-сетей, не дожидаясь полного скачивания. Использует библиотеку python-libtorrent или Ace Stream. Так же плагин может добавлять, проигрывать и управлять скачками в торрент клиентах (uTorrent, Transmisson, Deluge и Vuse) или средставми python-libtorrent.
|
||||
<description lang='ru'>Так же плагин может добавлять, проигрывать и управлять скачками в торрент клиентах (uTorrent, Transmisson, Deluge и Vuse, qBittorrent) или средставми python-libtorrent.
|
||||
</description>
|
||||
<disclaimer lang='ru'>GNU GPLv3 http://www.gnu.org/licenses/</disclaimer>
|
||||
<forum>https://forums.tvaddons.ag/addon-releases/29224-torrenter-v2.html</forum>
|
||||
|
|
Loading…
Reference in New Issue