Reporting same issue here. ASS successfully pulls everything but nothing on HAMA’s part.
Using latest pull and all folders are created in “Plex Media Server\Plug-in Support\Data\com.plexapp.agents.hama\DataItems”.
I had the same issue as above, which I fixed by changing here: github.com/ZeroQI/Hama.bundle/blob/master/Contents/Code/init.py (e.g. /var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Plug-ins/Hama.bundle/Contents/Code/__init__.py on linux)
all instances of rawgithub.com to rawgit.com and clearing the cache
@thexyz said:
I had the same issue as above, which I fixed by changing here: github.com/ZeroQI/Hama.bundle/blob/master/Contents/Code/init.py (e.g./var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Plug-ins/Hama.bundle/Contents/Code/__init__.pyon linux)all instances of rawgithub.com to rawgit.com and clearing the cache
I can confirm that changing rawgithub.com to rawgit.com does the trick.
Didn’t clear any cache because this is a new install.
Thanks thexyz
Posters are showing now.
But the Seasons are without image.
@DragonZeal said:
@thexyz said:
I had the same issue as above, which I fixed by changing here: github.com/ZeroQI/Hama.bundle/blob/master/Contents/Code/init.py (e.g./var/lib/plexmediaserver/Library/Application Support/Plex Media Server/Plug-ins/Hama.bundle/Contents/Code/__init__.pyon linux)all instances of rawgithub.com to rawgit.com and clearing the cache
I can confirm that changing rawgithub.com to rawgit.com does the trick.
Didn’t clear any cache because this is a new install.
Thanks thexyzPosters are showing now.
But the Seasons are without image.
Yep, confirm this has resolved the issue for me too.
Don’t think we need another confirmation but it finally works now
thanks a lot
@thexyz : Thanks a lot. wasn’t sure what was going on, seem like a github change
i did the change on EndOfLine369’s latest code changes below
https://gist.github.com/ZeroQI/b57228f6fe5a62026bfff0015af50199
“rawgithub.com (note the lack of subdomain) is a site I run and host myself which proxies raw.github.com and serves files with the correct Content-Type, to make testing and demoing easy for developers.”
“During development, when traffic is low and freshness is more important than performance, use rawgit.com. For anything you share with the public or push to production, use cdn.rawgit.com.”
trying to find the best url to use, i know this work, but i want the most respectfull URl not to hit servers too hard
I think it’s the wrong place to ask, but how do I add other plugins to the agent? For example I want Podnapisi TV Subtitles or OpenSubtitles added to the agent.
@Tetora Wrong question actually…
In Plex you add plug-ins, some of which are channels, others are agents (one primary choosing the guid for the serie/movie, and secondary agents reusing it).
Your intent is that you want to add a seconday agent" to Plex while using my agent as primary.
Some agents can cascade info (“Local media assets” ) but the agent to add need to be listed in Hama.bundle/Contents/Code/init.py (like opensubtitles commented below) AND possibly use the same guid. since i don’t use the tvdbid as unique id, won’t possibly work
class HamaTVAgent(Agent.TV_Shows, HamaCommonAgent):
name, primary_provider, fallback_agent, contributes_to, languages, accepts_from = ('HamaTV', True, False, None, [Locale.Language.English,], ['com.plexapp.agents.localmedia'] ) #, 'com.plexapp.agents.opensubtitles'
def search(self, results, media, lang, manual): self.Search(results, media, lang, manual, False )
def update(self, metadata, media, lang, force ): self.Update(metadata, media, lang, force, False )
I have tried to install HAMA and the Absolute Scanner on a windows system but it isn’t quite working for me. I am seeing the following error in the Plex Media Scanner.log
Jul 23, 2016 12:55:54.558 [5288] ERROR - Error scanning directory .
Jul 23, 2016 12:55:54.574 [5288] ERROR - No module in Absolute Series Scanner
Jul 23, 2016 12:55:54.574 [5288] ERROR - Error in Python: Looking up module:
Traceback (most recent call last):
File “C:\Users\Administrator\AppData\Local\Plex Media Server\Scanners\Series\Absolute Series Scanner.py”, line 8, in
from lxml import etree # fromstring
ImportError: DLL load failed: The specified module could not be found.
i am using the latest versions of HAMA and ASS from github.
Hi, Not sure if this is Plex or the agent but i’ve reinstalled both and for some reason it shows the anime “Black God” then once the compiling is done, it then disappears from the server o.o so it is no longer shown. yet if i go to the location it’s self remotely on the smart tv it plays fine. the issue seems to be plex not reaching it
@7gartner : http://lmgtfy.com/?q="ImportError%3A+DLL+load+failed%3A+The+specified+module+could+not+be+found"+etree
try to install the following, try again and report which solved the issue
https://www.microsoft.com/en-us/download/details.aspx?id=48145
https://www.microsoft.com/en-us/download/details.aspx?id=5555
https://www.microsoft.com/en-us/download/details.aspx?id=40784
@ToxicPanda : Scanner readme states “The files choosen by the scanner will be showing in Plex. The Plex metadata agent will find metadata for files showing.”. if files are not showing it’s a scanner issue. Please post to github or scanner thread the custom scanner log and plex scanner logs, list in the readme, in the troubleshooting steps
@ZeroQI said:
@7gartner : http://lmgtfy.com/?q="ImportError%3A+DLL+load+failed%3A+The+specified+module+could+not+be+found"+etree
try to install the following, try again and report which solved the issue
https://www.microsoft.com/en-us/download/details.aspx?id=48145
https://www.microsoft.com/en-us/download/details.aspx?id=5555
https://www.microsoft.com/en-us/download/details.aspx?id=40784
@ZeroQI installing the update from https://www.microsoft.com/en-us/download/details.aspx?id=5555 fixed this issue! thanks!
As soon as i set my library to use the Hama Scanner, Plex only propose me English as library language.
I can Hama to use french title, but Im’ still missing the french episode description from tvdb…
Never implemented that…
Agents settings include
- First Language preference for the Series title
- Second Language preference for the Series title
- Third Language preference for the Series title
- First Language preference for the Episode title
- Second Language preference for the Episode title
Will think about summary language
Yes, I saw the settings… and they worked. But summaries would have been very nice too 
Please update with this and test. Instead of loading the english tvdb xml, i load the language selected in the library, which is used for serie summary and episode summary
https://github.com/ZeroQI/Hama.bundle/blob/e0bf8311908e69527ec0d17d07e14700ba86baff/Contents/Code/init.py
i need you to check if it behaves as it should as i have no time to test, but it should handle la langue de moliere corectement… Merci de me faire un feedback detaille, cést une nouvelle fonctionalitee…
Is it possible to get Inuyasha & Inuyasha: The Final Act to appear under one folder in Plex?
I tried this:
Inuyasha
↓
Inuyasha [tvdb4-71361]
↓
Season 1 (with all of Inuyasha in it), Season 8 (with Inuyasha: The Final Act inside)
When I tried this, it seperated the two series, but the metadata for Season 1 (Inuyasha) loaded for Season 8 (Inuyasha: The Final Act). Is it possible to get it the way I want?
@ZeroQI said:
Please update with this and test. Instead of loading the english tvdb xml, i load the language selected in the library, which is used for serie summary and episode summary
It seems ok : i can select french for the library, and I get french summaries for series and episodes.
C’est la cependant que tu découvres qu’il y a des séries qui ont pas beaucoup de résumés d’épisode en francais… L’idéal serait de faire comme tu as fait par ailleurs, si pas 1er langage, alors prendre deuxième … Mais bon, j’exagere la ![]()
Besoin de plus d’informations ?
@guillaumejay Thanks for the test, it is what i was afraid of. You see, I loaded the fr xml from tvdb instead of the english one, plain and simple. English is pretty documented for episode summaries on thetvdb…
If i were to do what you imply, i need to load 2 xmls for every serie, which i would like to avoid and I believe people would be less inclined to update thetvdb then…
@clowncracker Working as designed…
in "guid_type2 table in the readme [in my signature, or https://github.com/ZeroQI/Absolute-Series-Scanner/blob/master/README.md] for the “tvdb4” mode for “Episodes numbering” it says “Absolute”…
Absolute numbering for s08e01-20 is s01e160-179. S08e01 will get metadata for ep 1 since the season is irrelevant in that mode so it behaves exactly as expected.
tvdb2 is for season numbering with ep number resetting to 1
- Inuyasha [tvdb2-71361], s08 will end up at the right place if you put it in “season 8” folder
- Inuyasha [tvdb-71361-s08] if you want the season 8 outside the other serie folder
tvdb3 is for season numbering with ep number staying absolute, best for long series
- Inuyasha [tvdb3-71361], s08 will end up at the right place if you put it in “season 8” folder
- Inuyasha [tvdb-71361-s08e160] if you want the season 8 outside the other serie folder
tvdb4 is for absolute numbering in any season folder. Everything in one season look ridiculous if a spare season 8 is there
- Inuyasha [tvdb4-71361] for season 1-7 in one season in one folder and season 8 in season 8 folder
- Inuyasha [tvdb4-71361-s01e160] for season 8 in separate serie folder.
[anidb2-xxxx] with each anidb serie in a folder would work well but you would have 8 series folder…
would display season for your absolutely numbered series an work since season 8 would be at the right place starting back at 1 at each season.
I tried to make the readme the most clear possible with extensive exemples… Please document what is unclear and could be re-written so you wouldn’t have asked this question…
If you do not follow the 8 series folder anidb convention, follow thetvdb convention
You should have 159 eps for season 1-7 and 20 for season 8. Episodes will overlap since you messed up the tvdb numbering
@ZeroQI said:
@guillaumejay Thanks for the test, it is what i was afraid of. You see, I loaded the fr xml from tvdb instead of the english one, plain and simple. English is pretty documented for episode summaries on thetvdb…
If i were to do what you imply, i need to load 2 xmls for every serie, which i would like to avoid and I believe people would be less inclined to update thetvdb then…@clowncracker Working as designed…
in "guid_type2 table in the readme [in my signature, or Absolute-Series-Scanner/README.md at master · ZeroQI/Absolute-Series-Scanner · GitHub] for the “tvdb4” mode for “Episodes numbering” it says “Absolute”…
Absolute numbering for s08e01-20 is s01e160-179. S08e01 will get metadata for ep 1 since the season is irrelevant in that mode so it behaves exactly as expected.tvdb2 is for season numbering with ep number resetting to 1
- Inuyasha [tvdb2-71361], s08 will end up at the right place if you put it in “season 8” folder
- Inuyasha [tvdb-71361-s08] if you want the season 8 outside the other serie folder
tvdb3 is for season numbering with ep number staying absolute, best for long series
- Inuyasha [tvdb3-71361], s08 will end up at the right place if you put it in “season 8” folder
- Inuyasha [tvdb-71361-s08e160] if you want the season 8 outside the other serie folder
tvdb4 is for absolute numbering in any season folder. Everything in one season look ridiculous if a spare season 8 is there
- Inuyasha [tvdb4-71361] for season 1-7 in one season in one folder and season 8 in season 8 folder
- Inuyasha [tvdb4-71361-s01e160] for season 8 in separate serie folder.
[anidb2-xxxx] with each anidb serie in a folder would work well but you would have 8 series folder…
would display season for your absolutely numbered series an work since season 8 would be at the right place starting back at 1 at each season.I tried to make the readme the most clear possible with extensive exemples… Please document what is unclear and could be re-written so you wouldn’t have asked this question…
If you do not follow the 8 series folder anidb convention, follow thetvdb convention
You should have 159 eps for season 1-7 and 20 for season 8. Episodes will overlap since you messed up the tvdb numbering
The issue I’m having is due to “Inuyasha: The Final Act (season 8 in TVDB)” is considered another anime in anidb.
anidb 6716 - Inuyasha: The Final Act (season 8 in TVDB)
anidb 144 - Inuyasha (seasons 1-7 in TVDB)
I’m trying to get both series in one folder in Plex with absolute numbering.
