Reduce download speed drop after prebuffering.

pull/1/head
Sergey Shramchenko 2016-03-10 18:11:38 +02:00
parent 2e0ba9136a
commit 4585e70b2e
2 changed files with 3 additions and 2 deletions

View File

@ -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')

View File

@ -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: