Merge pull request #35 from srg70/master
Уменьшена просадка скорости между буфером и просмотром для старого плеераpull/1/head
commit
0d398c9feb
|
@ -428,7 +428,7 @@ class Libtorrent:
|
|||
#'storage_mode': self.lt.storage_mode_t(1),
|
||||
'paused': False,
|
||||
#'auto_managed': False,
|
||||
#'duplicate_is_error': True
|
||||
'duplicate_is_error': False
|
||||
}
|
||||
if self.save_resume_data:
|
||||
log('loading resume data')
|
||||
|
|
|
@ -287,7 +287,7 @@ class TorrentPlayer(xbmc.Player):
|
|||
return
|
||||
xbmc.sleep(1000)
|
||||
self.torrent.resume_data()
|
||||
#self.torrent.session.remove_torrent(self.torrent.torrentHandle)
|
||||
self.torrent.session.remove_torrent(self.torrent.torrentHandle)
|
||||
progressBar.update(0)
|
||||
progressBar.close()
|
||||
return True
|
||||
|
@ -366,6 +366,7 @@ class TorrentPlayer(xbmc.Player):
|
|||
subs = self.torrent.getSubsIds(label)
|
||||
debug('[setup_subs] subs: '+str(subs))
|
||||
if len(subs) > 0:
|
||||
self.torrent.startSession()
|
||||
showMessage(self.localize('Information'),
|
||||
self.localize('Downloading and copy subtitles. Please wait.'), forced=True)
|
||||
for ind, title in subs:
|
||||
|
|
Loading…
Reference in New Issue