abbi031892 / periscope

Automatically exported from code.google.com/p/periscope
0 stars 0 forks source link

Addic7ed for HD files, after the fix according issue 113 #122

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1.Get any HD series file
2.Run periscope
3.Check the results

What is the expected output? What do you see instead?
Expected subtitles download, as usual there is no subtitles for HD versions, if 
there is an SD version exist and it is suitable.
So, i added in the addic7ed.py, starting the line 101 following lines:
if subteams == 'lol':
                                subteams = 'dimension'
                        if subteams == 'sys':
                                subteams = 'dimension'
                        if subteams == 'asap':
                                subteams = 'immerse'
                        if subteams == 'fqm':
                                subteams = 'immerse'
                        if subteams == 'xii':
                                subteams = 'immerse'
                        if subteams == 'pow':
                                subteams = 'orenji'
                        if subteams == 'fever':
                                subteams = 'avs'
Looks like it work for me. If anyone has better solution - u welcome :)

What version of the product are you using? On what operating system?
Periscope 0.2.4.orig., on QNAP NAS, Linux

Please provide any additional information below.

Original issue reported on code.google.com by dima...@gmail.com on 8 Dec 2011 at 9:44

Attachments:

GoogleCodeExporter commented 8 years ago
Hello. This works great for hd version from addic7ed but will not work for the 
sd version.
I added addic7edHD.py as a new plugin, which contains the mentioned patch.
I retained the original addic7ed.py and added to __init__.py

from Addic7edHD import Addic7edHD

this enables the HD patched plugin in addition to the original plugin.

Don't forget to modify the class name addic7ed -> addic7edHD in addic7edHD 
where necessary. I also attached the modified file.

all credit goes to the person above me who started this and gave the solution, 
Great work.

Original comment by emant...@gmail.com on 16 Jun 2012 at 9:16

Attachments:

GoogleCodeExporter commented 8 years ago
sorry, forgot to attach addic7edHD.py

Original comment by emant...@gmail.com on 16 Jun 2012 at 9:17

Attachments:

GoogleCodeExporter commented 8 years ago

Original comment by patrick....@gmail.com on 18 Jun 2012 at 7:57

GoogleCodeExporter commented 8 years ago
For those who use this updates, you may update the lines like above as 
following, and also you may rename it to Addic7edHD.py as suggested by 
emant...@gmail.com
                        if subteams == 'lol':
                                subteams = 'dimension'
                        if subteams == 'lol,dimension':
                            subteams = 'dimension'
                        if subteams == 'x264-lol':
                                subteams = 'dimension'
                        if subteams == 'x264.lol':
                                subteams = 'dimension'
                        if subteams == 'sys':
                                subteams = 'dimension'
                        if subteams == 'asap':
                                subteams = 'immerse'
                        if subteams == 'fqm':
                            subteams = 'immerse'
                        if subteams == 'xii':
                                subteams = 'immerse'
                        if subteams == 'pow':
                                subteams = 'orenji'
                        if subteams == 'fever':
                                subteams = 'avs'

Enjoy

Original comment by dima...@gmail.com on 21 Jun 2012 at 6:53

Attachments:

GoogleCodeExporter commented 8 years ago
[deleted comment]
GoogleCodeExporter commented 8 years ago
To j.cubizo...@gmail.com:
The subs for CSI.New.York.S09E08.720p.HDTV.X264-DIMENSION.mkv couldn't be 
downloaded from Addic7ed, because there is no such series on Addic7ed. If you 
will rename your file to CSI.NY.S09E08.720p.HDTV.X264-DIMENSION.mkv you will 
see that you will get the subtitles.

Original comment by dima...@gmail.com on 30 Nov 2012 at 12:56

GoogleCodeExporter commented 8 years ago
Here's my take on it. It's compatible for HD -> SD and SD -> HD.

Original comment by strit...@gmail.com on 16 Jul 2013 at 12:07

Attachments:

GoogleCodeExporter commented 8 years ago
Do you have any idea how to fix bug with downloading subtitles for the series 
with the year in the file name, as Revolution 2012 for example?

Original comment by dima...@gmail.com on 5 Aug 2013 at 12:51

GoogleCodeExporter commented 8 years ago
You can take a look at what has been done in the BierDopje plugin. It's not the 
most beautiful solution as it manually maintains a list of "CSI New York" => 
"CSI NY", "Revolution 2012" => "Revolution", ...

Original comment by patrick....@gmail.com on 5 Aug 2013 at 9:21