def BGPlayvid(url, name, download=None): videopage = utils.getHtml2(url) videopage = json.loads(videopage) if not videopage["240p"] == None: url = videopage["240p"].encode("utf8") if not videopage["480p"] == None: url = videopage["480p"].encode("utf8") if not videopage["720p"] == None: url = videopage["720p"].encode("utf8") url = url.replace("{DATA_MARKERS}", "data=pc.XX") if not url.startswith("http:"): url = "http:" + url videourl = url if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) listitem.setProperty("IsPlayable", "true") if int(sys.argv[1]) == -1: pl = xbmc.PlayList(xbmc.PLAYLIST_VIDEO) pl.clear() pl.add(videourl, listitem) xbmc.Player().play(pl) else: listitem.setPath(str(videourl)) xbmcplugin.setResolvedUrl(utils.addon_handle, True, listitem)
def BGPlayvid(url, name, download=None): videopage = utils.getHtml(url,'http://beeg.com') videopage = json.loads(videopage) if not videopage["240p"] == None: url = videopage["240p"].encode("utf8") if not videopage["480p"] == None: url = videopage["480p"].encode("utf8") if not videopage["720p"] == None: url = videopage["720p"].encode("utf8") url = url.replace("{DATA_MARKERS}","data=pc_XX") if not url.startswith("http:"): url = "https:" + url key = re.compile("/key=(.*?)%2Cend", re.DOTALL | re.IGNORECASE).findall(url)[0] decryptedkey = decrypt_key(key) videourl = url.replace(key, decryptedkey) if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) listitem.setProperty("IsPlayable","true") if int(sys.argv[1]) == -1: pl = xbmc.PlayList(xbmc.PLAYLIST_VIDEO) pl.clear() pl.add(videourl, listitem) xbmc.Player().play(pl) else: listitem.setPath(str(videourl)) xbmcplugin.setResolvedUrl(utils.addon_handle, True, listitem)
def BGPlayvid(url, name, download=None): videopage = utils.getHtml(url, "") videopage = json.loads(videopage) if not videopage["240p"] == None: url = videopage["240p"].encode("utf8") if not videopage["480p"] == None: url = videopage["480p"].encode("utf8") if not videopage["720p"] == None: url = videopage["720p"].encode("utf8") url = url.replace("{DATA_MARKERS}", "data=pc.DE") if not url.startswith("http:"): url = "https:" + url key = re.compile("/key=(.*?)%2Cend", re.DOTALL | re.IGNORECASE).findall(url)[0] decryptedkey = decrypt_key(key) videourl = url.replace(key, decryptedkey) if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo("video", {"Title": name, "Genre": "P**n"}) listitem.setProperty("IsPlayable", "true") if int(sys.argv[1]) == -1: pl = xbmc.PlayList(xbmc.PLAYLIST_VIDEO) pl.clear() pl.add(videourl, listitem) xbmc.Player().play(pl) else: listitem.setPath(str(videourl)) xbmcplugin.setResolvedUrl(utils.addon_handle, True, listitem)
def BGPlayvid(url, name, download=None): videopage = utils.getHtml2(url) videopage = json.loads(videopage) if not videopage["240p"] == None: url = videopage["240p"].encode("utf8") if not videopage["480p"] == None: url = videopage["480p"].encode("utf8") if not videopage["720p"] == None: url = videopage["720p"].encode("utf8") url = url.replace("{DATA_MARKERS}","data=pc.XX") if not url.startswith("http:"): url = "http:" + url videourl = url if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) listitem.setProperty("IsPlayable","true") if int(sys.argv[1]) == -1: pl = xbmc.PlayList(xbmc.PLAYLIST_VIDEO) pl.clear() pl.add(videourl, listitem) xbmc.Player().play(pl) else: listitem.setPath(str(videourl)) xbmcplugin.setResolvedUrl(utils.addon_handle, True, listitem)
def Playvid(url, name, download=None): listhtml = utils.getHtml2(url) listhtml = utils.unescapes(listhtml) match480 = re.search(r'[[]480p[]]=([^"]*?)&video_vars', listhtml) if match480: videourl = match480.group(1) else: match360 = re.search(r'[[]360p[]]=([^"]*?)&video_vars', listhtml) videourl = match360.group(1) if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) listitem.setProperty("IsPlayable","true") if int(sys.argv[1]) == -1: pl = xbmc.PlayList(xbmc.PLAYLIST_VIDEO) pl.clear() pl.add(videourl, listitem) xbmc.Player().play(pl) else: listitem.setPath(str(videourl)) xbmcplugin.setResolvedUrl(utils.addon_handle, True, listitem) return
def BGPlayvid(url, name, download=None): videopage = utils.getHtml(url, '') match = re.compile("'720p': '([^']+)'", re.DOTALL | re.IGNORECASE).findall(videopage) if not match: match = re.compile("'480p': '([^']+)'", re.DOTALL | re.IGNORECASE).findall(videopage) if not match: match = re.compile("'240p': '([^']+)'", re.DOTALL | re.IGNORECASE).findall(videopage) if match: videourl = match[0] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) listitem.setProperty("IsPlayable","true") if int(sys.argv[1]) == -1: pl = xbmc.PlayList(xbmc.PLAYLIST_VIDEO) pl.clear() pl.add(videourl, listitem) xbmc.Player().play(pl) #xbmc.Player().play(videourl, listitem) else: listitem.setPath(str(videourl)) xbmcplugin.setResolvedUrl(utils.addon_handle, True, listitem)
def Playvid(url, name, download=None): videopage = utils.getHtml(url, '') match = re.compile('films="([^"]+)"', re.DOTALL | re.IGNORECASE).findall(videopage) videos = match[0].split('|||') if len(videos) > 1: i = 1 videolist = [] for x in videos: videolist.append('Part ' + str(i)) i += 1 videopart = dialog.select('Multiple videos found', videolist) videourl = videos[videopart] else: videourl = videos[0] videourl = videourl + "|referer=" + url if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def PHVideo(url, name, download=None): progress.create('Play video', 'Searching videofile.') progress.update( 10, "", "Loading video page", "" ) Supported_hosts = ['Openload.io', 'StreamCloud', 'NowVideo', 'FlashX', 'www.flashx.tv', 'streamcloud.eu', 'streamin.to'] videopage = utils.getHtml(url, '') match = re.compile(r'<li id="link-([^"]+).*?xs-12">\s+Watch it on ([\w\.]+)', re.DOTALL | re.IGNORECASE).findall(videopage) if len(match) > 1: sites = [] vidurls = [] for videourl, site in match: if site in Supported_hosts: sites.append(site) vidurls.append(videourl) if len(sites) == 1: sitename = match[0][1] siteurl = match[0][0] else: site = utils.dialog.select('Select video site', sites) sitename = sites[site] siteurl = vidurls[site] else: sitename = match[0][1] siteurl = match[0][0] outurl = "http://www.pornhive.tv/en/out/" + siteurl progress.update( 20, "", "Getting video page", "" ) if 'loud' in sitename: progress.update( 30, "", "Getting StreamCloud", "" ) playurl = getStreamCloud(outurl) elif "lash" in sitename: progress.update( 30, "", "Getting FlashX", "" ) playurl = getFlashX(outurl) elif sitename == "NowVideo": progress.update( 30, "", "Getting NowVideo", "" ) playurl = getNowVideo(outurl) elif "Openload" in sitename: progress.update( 30, "", "Getting Openload", "" ) progress.close() utils.PLAYVIDEO(outurl, name, download) return elif "streamin" in sitename: progress.update( 30, "", "Getting Streamin", "" ) streaming = utils.getHtml(outurl, '') outurl=re.compile("action='([^']+)'").findall(streaming)[0] progress.close() utils.playvideo(outurl, name, download) return else: progress.close() utils.dialog.ok('Sorry','This host is not supported.') return progress.update( 90, "", "Playing video", "" ) progress.close() if download == 1: utils.downloadVideo(playurl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(playurl, listitem)
def playvid(): if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def playvid(): progress.close() if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def playvid(): progress.close() if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo("video", {"Title": name, "Genre": "P**n"}) xbmc.Player().play(videourl, listitem)
def hello(url, frame_by_frame_flag): name = f"out.txt" gotAt = datetime.now().strftime('%M:%S.%f') print(f"{gotAt},", file=open(name, "a"), end="") utils.downloadVideo(f'https://www.youtube.com/watch?v={url}') utils.processVideo('temp.mp4', frame_by_frame_flag) processedAt = datetime.now().strftime('%M:%S.%f') print(f"\nfinished at: {processedAt}\n") print(f"{processedAt}", file=open(name, "a")) return f"Got requisition at: {gotAt}"
def Playvid(url, name, download=None): videopage = utils.getHtml(url, "") videourl = re.compile("video_url: '([^']+)", re.DOTALL | re.IGNORECASE).findall(videopage) videourl = videourl[0] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo("video", {"Title": name, "Genre": "P**n"}) xbmc.Player().play(videourl, listitem)
def HCPlayvid(url, name, download=None): progress.create('Play video', 'Searching videofile.') progress.update(10, "", "Loading video page", "") link = utils.getHtml(url, '') match = re.compile('<iframe.*? src="([^"]+)" FRAME', re.DOTALL | re.IGNORECASE).findall(link) if len(match) > 1: vh = dialog.select('Videohost:', match) if vh == -1: return else: vh = 0 progress.update(40, "", "Loading video host", "") urldata2 = getHC(match[vh]) if match[vh].find('hentaiupload') > 0: progress.update(80, "", "Loading hentaiupload", "") try: match1 = re.compile('url: "([^"]+mp4)', re.DOTALL | re.IGNORECASE).findall(urldata2) url = match1[0] except: pass videourl = url + "|referer=" + match[vh] elif match[vh].find('hvidengine') > 0: progress.update(80, "", "Loading hvidengine", "") try: match1 = re.compile('file: "([^"]+)', re.DOTALL | re.IGNORECASE).findall(urldata2) url = match1[0] except: pass videourl = url + "|referer=" + match[vh] else: progress.update(80, "", "Loading video uphentaivid", "") match2 = re.compile("<script type='text/javascript'>([^<]+)</sc", re.DOTALL | re.IGNORECASE).findall(urldata2) for jspacked in match2: res = unpack(jspacked) try: videourl = re.compile("file.*?(http.*?mp4)", re.DOTALL | re.IGNORECASE).findall(res)[0] except: videourl = None progress.close() if videourl: if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): html = utils.getHtml(url, '') videourl = re.compile("var player_quality_.+? = '(.+?)'").findall(html) videourl = videourl[-1] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): html = utils.getHtml(url, '') videourl = re.compile("video_url: '([^']+)").findall(html) videourl = videourl[0] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def NLPLAYVID(url,name, download=None): videopage = utils.getHtml(url, '') videourl = re.compile('<source src="([^"]+)"', re.DOTALL | re.IGNORECASE).findall(videopage) videourl = videourl[0] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def TPPlayvid(url, name, download=None): videopage = utils.getHtml(url, '') match = re.compile("url: '([^']+flv)'", re.DOTALL | re.IGNORECASE).findall(videopage) if match: videourl = match[0] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): videopage = utils.getHtml(url, pdreferer, headers, data='') links = re.compile('<a href="([^"]+)" class="post_download_link clearfix">[^>]+>.*?(\d+p).*?<', re.DOTALL | re.IGNORECASE).findall(videopage) videourl = getVideoUrl(links) videourl = utils.getVideoLink(videourl, url) if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): videopage = utils.getHtml(url, '') videourl = re.compile("video_url: '([^']+)", re.DOTALL | re.IGNORECASE).findall(videopage)[0] videourl = utils.getVideoLink(videourl, url) if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def NLPLAYVID(url, name, download=None): videopage = utils.getHtml(url, '') videourl = re.compile('<source src="([^"]+)"', re.DOTALL | re.IGNORECASE).findall(videopage) videourl = videourl[0] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): if utils.addon.getSetting("paradisehill") == "true": playall = True else: playall = '' videopage = utils.getHtml(url, '') match = re.compile('films="([^"]+)"', re.DOTALL | re.IGNORECASE).findall(videopage) videos = match[0].split('|||') if playall == '': if len(videos) > 1: i = 1 videolist = [] for x in videos: videolist.append('Part ' + str(i)) i += 1 videopart = dialog.select('Multiple videos found', videolist) if videopart == -1: return videourl = videos[videopart] else: videourl = videos[0] videourl = videourl + "|referer=" + url if download == 1 and playall == '': utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") if playall: pl = xbmc.PlayList(xbmc.PLAYLIST_VIDEO) pl.clear() i = 1 for videourl in videos: newname = name + ' Part ' + str(i) listitem = xbmcgui.ListItem(newname, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': newname, 'Genre': 'P**n'}) listitem.setProperty("IsPlayable", "true") videourl = videourl + "|referer=" + url pl.add(videourl, listitem) i += 1 listitem = '' xbmc.Player().play(pl) else: listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): print "mrsexe::Playvid " + url html = utils.getHtml(url, '') videourl = re.compile(r"src='(/inc/clic\.php\?video=.+?&cat=mrsex.+?)'").findall(html) html = utils.getHtml('http://www.mrsexe.com/' + videourl[0], '') videourls = re.compile(r"'file': \"(.+?)\",.+?'label': '(.+?)'", re.DOTALL).findall(html) videourls = sorted(videourls, key=lambda tup: tup[1], reverse=True) videourl = videourls[0][0] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): videopage = utils.getHtml(url, '') servervideo = re.compile("servervideo = '([^']+)'", re.DOTALL | re.IGNORECASE).findall(videopage)[0] vpath = re.compile("path = '([^']+)'", re.DOTALL | re.IGNORECASE).findall(videopage)[0] repp = re.compile(r"repp = codage\('([^']+)'", re.DOTALL | re.IGNORECASE).findall(videopage)[0] filee = re.compile("filee = '([^']+)'", re.DOTALL | re.IGNORECASE).findall(videopage)[0] repp = hashlib.md5(repp).hexdigest() videourl = servervideo + vpath + repp + filee if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def PTPlayvid(url, name, download=None): videopage = utils.getHtml(url, "") match = re.compile("<filehd>([^<]+)<", re.DOTALL | re.IGNORECASE).findall(videopage) match2 = re.compile("<file>([^<]+)<", re.DOTALL | re.IGNORECASE).findall(videopage) try: videourl = match[0] except: videourl = match2[0] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo("video", {"Title": name, "Genre": "P**n"}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): videopage = utils.getHtml(url, url) video_url = re.compile("video_url:([^}]+)", re.DOTALL | re.IGNORECASE).findall(videopage)[0] match = re.compile(r'(ghb\w\w)="([^"]+)"', re.DOTALL | re.IGNORECASE).findall(videopage) for repl, repl2 in match: video_url = video_url.replace(repl,repl2) video_url = video_url.replace("\"","") videourl = video_url.replace("+","") if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): videopage = utils.getHtml(url, pdreferer, headers, data='') links = re.compile( '<a href="([^"]+)" class="post_download_link clearfix">[^>]+>.*?(\d+p).*?<', re.DOTALL | re.IGNORECASE).findall(videopage) videourl = getVideoUrl(links) videourl = utils.getVideoLink(videourl, url) if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): html = utils.getHtml(url, '') stream_id = re.compile("stream_id = '([^']+)';").findall(html) stream_key = re.compile("stream_key = '([^']+)'").findall(html) stream_hd = re.compile("stream_hd = (1|0)").findall(html) if int(stream_hd[0]) == 1: source = '/title/720p__mp4' else: source = '/title/480p__mp4' videourl = base_url + '/_' + stream_id[0] + '/' + stream_key[0] + source if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def HCPlayvid(url,name, download=None): progress.create('Play video', 'Searching videofile.') progress.update( 10, "", "Loading video page", "" ) link = utils.getHtml(url,'') match = re.compile('<iframe.*? src="([^"]+)" FRAME', re.DOTALL | re.IGNORECASE).findall(link) if len(match) > 1: vh = dialog.select('Videohost:', match) if vh == -1: return else: vh = 0 progress.update( 40, "", "Loading video host", "" ) urldata2 = getHC(match[vh]) if match[vh].find('hentaiupload') > 0: progress.update( 80, "", "Loading hentaiupload", "" ) try: match1 = re.compile('url: "([^"]+mp4)', re.DOTALL | re.IGNORECASE).findall(urldata2) url = match1[0] except: pass videourl = url + "|referer="+ match[vh] elif match[vh].find('hvidengine') > 0: progress.update( 80, "", "Loading hvidengine", "" ) try: match1 = re.compile('file: "([^"]+)', re.DOTALL | re.IGNORECASE).findall(urldata2) url = match1[0] except: pass videourl = url + "|referer="+ match[vh] else: progress.update( 80, "", "Loading video uphentaivid", "" ) match2 = re.compile("<script type='text/javascript'>([^<]+)</sc", re.DOTALL | re.IGNORECASE).findall(urldata2) for jspacked in match2: res = unpack(jspacked) try: videourl = re.compile("file.*?(http.*?mp4)", re.DOTALL | re.IGNORECASE).findall(res)[0] except: videourl = None progress.close() if videourl: if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): if utils.addon.getSetting("paradisehill") == "true": playall = True else: playall = '' videopage = utils.getHtml(url, '') match = re.compile('films="([^"]+)"', re.DOTALL | re.IGNORECASE).findall(videopage) videos = match[0].split('|||') if playall == '': if len(videos) > 1: i = 1 videolist = [] for x in videos: videolist.append('Part ' + str(i)) i += 1 videopart = dialog.select('Multiple videos found', videolist) if videopart == -1: return videourl = videos[videopart] else: videourl = videos[0] videourl = videourl + "|referer="+ url if download == 1 and playall == '': utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") if playall: pl = xbmc.PlayList(xbmc.PLAYLIST_VIDEO) pl.clear() i = 1 for videourl in videos: newname = name + ' Part ' + str(i) listitem = xbmcgui.ListItem(newname, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': newname, 'Genre': 'P**n'}) listitem.setProperty("IsPlayable","true") videourl = videourl + "|referer="+ url pl.add(videourl, listitem) i += 1 listitem = '' xbmc.Player().play(pl) else: listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): videopage = utils.getHtml(url, '') videourl = re.compile("video_url: '(.+?)\/\?br", re.DOTALL | re.IGNORECASE).findall(videopage) videourl = videourl[0] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) listitem.setProperty("IsPlayable","true") if int(sys.argv[1]) == -1: pl = xbmc.PlayList(xbmc.PLAYLIST_VIDEO) pl.clear() pl.add(videourl, listitem) xbmc.Player().play(pl) else: listitem.setPath(str(videourl)) xbmcplugin.setResolvedUrl(utils.addon_handle, True, listitem)
def PTPlayvid(url, name, download=None): videopage = utils.getHtml(url, '') match = re.compile("<filehd>([^<]+)<", re.DOTALL | re.IGNORECASE).findall(videopage) match2 = re.compile("<file>([^<]+)<", re.DOTALL | re.IGNORECASE).findall(videopage) try: videourl = match[0] except: videourl = match2[0] if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def HCPlayvid(url, name, download=None): progress.create("Play video", "Searching videofile.") progress.update(10, "", "Loading video page", "") link = utils.getHtml(url, "") match = re.compile('<iframe.*? src="([^"]+)" FRAME', re.DOTALL | re.IGNORECASE).findall(link) if len(match) > 1: vh = dialog.select("Videohost:", match) else: vh = 0 progress.update(40, "", "Loading video host", "") urldata2 = getHC(match[vh]) if match[vh].find("hentaiupload") > 0: progress.update(80, "", "Loading hentaiupload", "") try: match1 = re.compile('url: "([^"]+mp4)', re.DOTALL | re.IGNORECASE).findall(urldata2) url = match1[0] except: pass videourl = url + "|referer=" + match[vh] elif match[vh].find("hvidengine") > 0: progress.update(80, "", "Loading hvidengine", "") try: match1 = re.compile('file: "([^"]+)', re.DOTALL | re.IGNORECASE).findall(urldata2) url = match1[0] except: pass videourl = url + "|referer=" + match[vh] else: progress.update(80, "", "Loading video", "") match2 = re.compile("<script type='text/javascript'>([^<]+)</sc", re.DOTALL | re.IGNORECASE).findall(urldata2) res = beautify(match2[0]) match3 = re.compile("file.*?(http.*?mp4)", re.DOTALL | re.IGNORECASE).findall(res) videourl = match3[0] progress.close() if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo("video", {"Title": name, "Genre": "P**n"}) xbmc.Player().play(videourl, listitem)
def Playvid(url, name, download=None): abpage = utils.getHtml(url, url) vartucurl = re.compile('<iframe.*?src="([^"]+)"', re.DOTALL | re.IGNORECASE).findall(abpage)[0] embedpage = utils.getHtml(vartucurl, url) scripturl = re.compile("src='([^']+)", re.DOTALL | re.IGNORECASE).findall(embedpage)[0] scripturl = "https://vartuc.com" + scripturl videopage = utils.getHtml(scripturl, vartucurl, vartuchdr) video_url = re.compile("video_url:(.*?),video", re.DOTALL | re.IGNORECASE).findall(videopage)[0] match = re.compile(r'(gh\w\w\w)="([^"]+)"', re.DOTALL | re.IGNORECASE).findall(videopage) for repl, repl2 in match: video_url = video_url.replace(repl,repl2) video_url = video_url.replace("\"","") videourl = video_url.replace("+","") videourl = utils.getVideoLink(videourl, '', vartuchdr2) if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def PHVideo(url, name, download=None): progress.create('Play video', 'Searching videofile.') progress.update( 10, "", "Loading video page", "" ) videopage = utils.getHtml(url, '') match = re.compile(r'<li id="link-([^"]+).*?xs-12">\s+Watch it on ([\w]+)', re.DOTALL | re.IGNORECASE).findall(videopage) if len(match) > 1: sites = [] for videourl, site in match: sites.append(site) site = utils.dialog.select('Select video site', sites) sitename = match[site][1] siteurl = match[site][0] else: sitename = match[0][1] siteurl = match[0][0] outurl = "http://www.pornhive.tv/en/out/" + siteurl progress.update( 20, "", "Getting video page", "" ) if sitename == "StreamCloud": progress.update( 30, "", "Getting StreamCloud", "" ) playurl = getStreamCloud(outurl) elif sitename == "FlashX": progress.update( 30, "", "Getting FlashX", "" ) playurl = getFlashX(outurl) else: progress.close() utils.dialog.ok('Sorry','This host is not supported.') return progress.update( 90, "", "Playing video", "" ) progress.close() if download == 1: utils.downloadVideo(playurl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(playurl, listitem)
def Playvid(url, name, download=None): videopage = utils.getHtml(url, '') match = re.compile('films="([^"]+)"', re.DOTALL | re.IGNORECASE).findall(videopage) videos = match[0].split('|||') if len(videos) > 1: i = 1 videolist = [] for x in videos: videolist.append('Part ' + str(i)) i += 1 videopart = dialog.select('Multiple videos found', videolist) videourl = videos[videopart] else: videourl = videos[0] videourl = videourl + "|referer="+ url if download == 1: utils.downloadVideo(videourl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(videourl, listitem)
def PHVideo(url, name, download=None): progress.create('Play video', 'Searching videofile.') progress.update(10, "", "Loading video page", "") Supported_hosts = [ 'Openload.io', 'StreamCloud', 'NowVideo', 'www.nowvideo.sx', 'FlashX', 'www.flashx.tv', 'flashx.tv', 'streamcloud.eu', 'streamin.to', 'videowood.tv', 'www.keeplinks.eu', 'openload.co', 'datoporn.com', 'gr8movies.org', 'pornoworld.freeforumzone.com' ] videopage = utils.getHtml(url, '') match = re.compile( r'data-id="([^"]+)" target="_blank" title="Watch it on ([\w.]+)', re.DOTALL | re.IGNORECASE).findall(videopage) if len(match) > 1: sites = [] vidurls = [] for videourl, site in match: if site in Supported_hosts: sites.append(site) vidurls.append(videourl) if len(sites) == 1: sitename = sites[0] siteurl = vidurls[0] elif len(sites) > 1: site = utils.dialog.select('Select video site', sites) if site == -1: return sitename = sites[site] siteurl = vidurls[site] else: utils.notify('Sorry', 'No supported hosts found.') return else: sitename = match[0][1] siteurl = match[0][0] outurl = "http://www.pornhive.tv/en/out/" + siteurl progress.update(20, "", "Getting video page", "") if 'loud' in sitename: progress.update(30, "", "Getting StreamCloud", "") playurl = getStreamCloud(outurl) elif "lash" in sitename: progress.update(30, "", "Getting FlashX", "") progress.close() utils.PLAYVIDEO(outurl, name, download) return elif sitename == "NowVideo" or sitename == "www.nowvideo.sx": progress.update(30, "", "Getting NowVideo", "") playurl = getNowVideo(outurl) elif "penload" in sitename: progress.update(30, "", "Getting Openload", "") outurl1 = utils.getVideoLink(outurl, '') utils.playvideo(outurl1, name, download, outurl) return elif "videowood" in sitename: progress.update(30, "", "Getting Videowood", "") progress.close() utils.PLAYVIDEO(outurl, name, download) return elif "gr8movies" in sitename: progress.update(30, "", "Getting Gr8movies", "") progress.close() utils.PLAYVIDEO(outurl, name, download) return elif "freeforumzone" in sitename: progress.update(30, "", "Getting pornoworld", "") progress.close() utils.PLAYVIDEO(outurl, name, download) return elif "streamin" in sitename: progress.update(30, "", "Getting Streamin", "") streaming = utils.getHtml(outurl, '') outurl = re.compile("action='([^']+)'").findall(streaming)[0] progress.close() utils.playvideo(outurl, name, download, outurl) return elif 'keeplinks' in sitename: progress.update(30, "", "Getting Keeplinks", "") outurl2 = getKeeplinks(outurl) utils.playvideo(outurl2, name, download, outurl) return elif "datoporn" in sitename: progress.update(30, "", "Getting Datoporn", "") outurl1 = utils.getVideoLink(outurl, '') utils.playvideo(outurl1, name, download, outurl) return else: progress.close() utils.notify('Sorry', 'This host is not supported.') return progress.update(90, "", "Playing video", "") progress.close() if playurl: if download == 1: utils.downloadVideo(playurl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(playurl, listitem)
def PHVideo(url, name, download=None): progress.create('Play video', 'Searching videofile.') progress.update( 10, "", "Loading video page", "" ) Supported_hosts = ['Openload.io', 'StreamCloud', 'NowVideo', 'www.nowvideo.sx', 'FlashX', 'www.flashx.tv', 'flashx.tv', 'streamcloud.eu', 'streamin.to', 'videowood.tv', 'www.keeplinks.eu', 'openload.co', 'datoporn.com', 'gr8movies.org', 'pornoworld.freeforumzone.com'] videopage = utils.getHtml(url, '') match = re.compile(r'data-id="([^"]+)" target="_blank" title="Watch it on ([\w.]+)', re.DOTALL | re.IGNORECASE).findall(videopage) if len(match) > 1: sites = [] vidurls = [] for videourl, site in match: if site in Supported_hosts: sites.append(site) vidurls.append(videourl) if len(sites) == 1: sitename = sites[0] siteurl = vidurls[0] elif len(sites) > 1: site = utils.dialog.select('Select video site', sites) if site == -1: return sitename = sites[site] siteurl = vidurls[site] else: utils.notify('Sorry','No supported hosts found.') return else: sitename = match[0][1] siteurl = match[0][0] outurl = "http://www.pornhive.tv/en/out/" + siteurl progress.update( 20, "", "Getting video page", "" ) if 'loud' in sitename: progress.update( 30, "", "Getting StreamCloud", "" ) playurl = getStreamCloud(outurl) elif "lash" in sitename: progress.update( 30, "", "Getting FlashX", "" ) progress.close() utils.PLAYVIDEO(outurl, name, download) return elif sitename == "NowVideo" or sitename == "www.nowvideo.sx": progress.update( 30, "", "Getting NowVideo", "" ) playurl = getNowVideo(outurl) elif "penload" in sitename: progress.update( 30, "", "Getting Openload", "" ) outurl1 = utils.getVideoLink(outurl, '') utils.playvideo(outurl1, name, download, outurl) return elif "videowood" in sitename: progress.update( 30, "", "Getting Videowood", "" ) progress.close() utils.PLAYVIDEO(outurl, name, download) return elif "gr8movies" in sitename: progress.update( 30, "", "Getting Gr8movies", "" ) progress.close() utils.PLAYVIDEO(outurl, name, download) return elif "freeforumzone" in sitename: progress.update( 30, "", "Getting pornoworld", "" ) progress.close() utils.PLAYVIDEO(outurl, name, download) return elif "streamin" in sitename: progress.update( 30, "", "Getting Streamin", "" ) streaming = utils.getHtml(outurl, '') outurl=re.compile("action='([^']+)'").findall(streaming)[0] progress.close() utils.playvideo(outurl, name, download, outurl) return elif 'keeplinks' in sitename: progress.update( 30, "", "Getting Keeplinks", "" ) outurl2 = getKeeplinks(outurl) utils.playvideo(outurl2, name, download, outurl) return elif "datoporn" in sitename: progress.update( 30, "", "Getting Datoporn", "" ) outurl1 = utils.getVideoLink(outurl, '') utils.playvideo(outurl1, name, download, outurl) return else: progress.close() utils.notify('Sorry','This host is not supported.') return progress.update( 90, "", "Playing video", "" ) progress.close() if playurl: if download == 1: utils.downloadVideo(playurl, name) else: iconimage = xbmc.getInfoImage("ListItem.Thumb") listitem = xbmcgui.ListItem(name, iconImage="DefaultVideo.png", thumbnailImage=iconimage) listitem.setInfo('video', {'Title': name, 'Genre': 'P**n'}) xbmc.Player().play(playurl, listitem)
import sys import os from utils import downloadVideo, downloadAudio while True: user = raw_input('Do you want to continue? [y/n] ') if user.lower() in ['yes', 'y']: url = raw_input('Enter content URL: ') # link = YouTube(url) form = raw_input('Download video or audio? [v/a] ') if form.lower() in ['v', 'video']: warn = raw_input('Are you sure? [y/n]') if warn.lower() in ['y', 'yes']: downloadVideo(url) print('Download complete') elif form.lower() in ['a', 'audio']: warn = raw_input('Are you sure? [y/n]') if warn.lower() in ['y', 'yes']: downloadAudio(url) print('Download complete') if user.lower() in ['no', 'n']: print('Ending session') exit()