WIP Anime Ultima Addon Re-release.
#1
I noticed that an old plugin from Voinage that I used , Anime Ultima was showing signs of old age and stopped working with the new release of kodi. It also have many other bugs introduced with this new update of Kodi. After asking Voinage if I could work on it and getting his approval, I started the task of banging my head off the wall.

I'm new to addons and python and have been using this to teach myself how to code. So far, I got everything up to date except for a few issues I haven't figured out how to resolve.


At this point, you can get the addon here .....https://bitbucket.org/ShadowGar/kodi-anime-ultimate-plugin

This addon will continue to update and have new features and a new look.

I am having a huge issue with resolving mp4upload,dailymotion and yourupload. I have checked the code and everything should be working fine, but no video populates. So with that, I am looking for a person or a people to possibly help out with the project or at least help me understand what I'm doing wrong with the resolving issue. I've tried for a week now to get the resolvers to work without re-writing the whole addon resolver.

If anyone is interested, please let me know. At this point, I have not been able to continue with the project until I can figure out what I'm doing wrong. Once I figure this out, I intend to get this on a repository and back in operation to everyone that has used this in the past. Smile
Reply
#2
To update this, I've fixed a few more issues but I'm having an issue. Maybe someone with knowledge of resolving can answer this.

Code:
def VIDS(name,url):
  vidlinks=[]

  if 'MP4UPLOAD' in name:
    try:
      mp4upload=re.compile('<div class="player-embed" id="pembed"><iframe src="(.+?)".+?').findall(net().http_GET(url).content)[0]
      mp4=re.compile("'file': '(.+?)'").findall(net().http_GET(mp4upload).content)[0]
      vidlinks((name,mp4,'http://www.mp4upload.com/images/logo.png'))
    except:pass
    
  if 'DAILYMOTION' in name:
    try:
      daily=re.compile('<div class="player-embed" id="pembed"><embed src="(.+?)" type="application/x-shockwave-flash"',re.DOTALL).findall(net().http_GET(url).content)[0]
      redirect = urllib.unquote(net().http_GET(net().http_GET(daily).get_url().replace('swf/','')).content)
      dail = urllib.unquote(re.compile('"video_url":"(.+?)"',re.DOTALL).findall(redirect)[0])
      vidlinks.append((name,dail,'http://static1.dmcdn.net/images/dailymotion-logo-ogtag.png.v26907a7cb2bfd44b9'))
    except: pass
          
  if 'YOURUPLOAD' in name:
    try:
      yu=re.compile('<iframe title="YourUpload" type="text/html" frameborder=".+?" scrolling="no" width=".+?" height=".+?" src="(.+?)">').findall(net().http_GET(url).content)[0]
      data2 = urllib.unquote(net().http_GET(yu).content)
      yupload='http://f11'+re.compile('<meta property="og:video" content="http://f\d{2}(.+?)&amp;file').findall(data2)[0]
      yupload='http://f11'+re.compile('file=http://f\d{2}(.+?)&file_size').findall(data2)[0]
      vidlinks.append((name,yupload,'http://www.yourupload.com/theme/images/logo.png'))
    except: pass

  if vidlinks:
    for name,url,image in vidlinks:
      addLink(name,url,image,len(vidlinks))

The above code does not error nor does it add a link. I've hit a wall to what the issue could be. Any ideas?
Reply
#3
Tried to install the plugin and it said the dependencies were not met. What are they so I can get this awesome plugin running?
Image
Reply
#4
I just found this, and like Kalebbroo, I also received the same error when trying to install the rep. I then extracted the actual plugin from the zip file, zipped that plugin and it would install. However, trying to open the plugin gives errors. In fact, the website itself gives me errors, not sure if that has anything to do with it or not? Also your rep was last updated on November 15th, 2014, so I'm guessing that you stopped working on this?
Reply

Logout Mark Read Team Forum Stats Members Help
Anime Ultima Addon Re-release.0