hi,
A newbie question:
Does the urlresolver support flashx.tv ?
Here is my kodi script:
But, when I run the script, the console says: Video not found
I've also replaced the url with: h++p://www.flashx.tv/embed-7lbxze60pt66.html
but it still says the same error
Is there any fix for my issue?
Any help is appreciated
Thanks
A newbie question:
Does the urlresolver support flashx.tv ?
Here is my kodi script:
Code:
import urlresolver
url = 'https://www.flashx.tv/7lbxze60pt66.html'
err = None
try:
if urlresolver.HostedMediaFile(url):
url = urlresolver.HostedMediaFile(url).resolve()
except Exception as err:
url = False
if not url:
print str(err) if err else 'ERROR'
else:
print url
But, when I run the script, the console says: Video not found
I've also replaced the url with: h++p://www.flashx.tv/embed-7lbxze60pt66.html
but it still says the same error
Is there any fix for my issue?
Any help is appreciated
Thanks