Private GIT

Skip to content
Snippets Groups Projects
Commit 876d38af authored by supergonkas's avatar supergonkas
Browse files

Merge pull request #178 from SickRage/duramato-patch-1

Make elitetorrent quality correct and make it more scene "friendly"
parents 61bcb641 023154e5
No related branches found
No related tags found
No related merge requests found
......@@ -156,15 +156,17 @@ class elitetorrentProvider(generic.TorrentProvider):
# Quality, if no literal is defined it's HDTV
if 'calidad' not in title:
title += ' [720p HDTV x264]'
title += ' HDTV x264'
title = title.replace('(Buena calidad)', '[720p HDTV x264]')
title = title.replace('(Alta calidad)', '[720p HDTV x264]')
title = title.replace('(calidad regular)', '[DVDrip x264]')
title = title.replace('(calidad media)', '[DVDrip x264]')
title = title.replace('(calidad baja)', 'HDTV x264')
title = title.replace('(Buena calidad)', '720p HDTV x264')
title = title.replace('(Alta calidad)', '720p HDTV x264')
title = title.replace('(calidad regular)', 'DVDrip x264')
title = title.replace('(calidad media)', 'DVDrip x264')
#Language, all results from this provider have spanish audio, we append it to title (avoid to download undesired torrents)
title += ' [Spanish Audio]'
title += ' SPANISH AUDIO'
title += '-ELITETORRENT'
return title.strip()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment