Audio/video stream recording forums
|
Attention Visitor: |
You may have to register or log in before you can post:
|
|
|
Thread Tools | Display Modes |
#51
|
|||
|
|||
Re: Downloading from voot.comHi...guyzz I need a way to get encryption.key file of voot.com. I have downloaded video but its encrypted
|
#52
|
|||
|
|||
Re: Downloading from voot.comQuote:
I hope some 1 will program CMD same like Hotstar |
#53
|
|||
|
|||
Re: Downloading from voot.comQuote:
example for ampal16999 method marked as red Code:
http://video.voot.com/enc/fhls/p/1982551/sp/198255100/serveFlavor/entryId/0_g88m6n8c/v/2/pv/1/flavorId/0_xzt2toko/name/a.mp4/encryption.key it should suit |
#54
|
|||
|
|||
Re: Downloading from voot.comQuote:
Hello. I want to download this video from voot.com http://www.voot.com/shows/khatron-ke...-finale/389224 Initially I used to paste the link in 9xbuddy.com and it used to work perfectly but not now due to DRM Protection. I read this thread but i still cannot understand the procedure. I use Net Transport software for getting the URL. It shows a lot of URLs but only 2 links have .mp4 extention at the end so i assuming that they are correct ones since others have .m4s extention. I got this link initially http://video.voot.com/edash/p/198255...init-f1-a1.mp4 which i later modified to this reading the procedure here. (for 1080 p) http://video.voot.com/edash/p/198255.../1/flavorId/0_ o8ql2x0l /name/a.mp4/index.m3u8 I paste this link in Internet Download Manager but it gives this error. --- Cannot download this file. Bad request. I am still not able to understand what to do after the getting the first link and how to modify it for getting m3u8 link. Is ' /a.mp4/index.m3u8 ' same for all videos? Please provide a detailed procedure. I am new to this. Thank you. |
#55
|
|||
|
|||
Re: Downloading from voot.comQuote:
Hello. I want to download this video from voot.com http://www.voot.com/shows/khatron-ke...-finale/389224 Initially I used to paste the link in 9xbuddy.com and it used to work perfectly but not now due to DRM Protection. I read this thread but i still cannot understand the procedure. I use Net Transport software for getting the URL. It shows a lot of URLs but only 2 links have .mp4 extention at the end so i assuming that they are correct ones since others have .m4s extention. I got this link initially http://video.voot.com/edash/p/198255...init-f1-a1.mp4 which i later modified to this reading the procedure here. (for 1080 p) http://video.voot.com/edash/p/198255.../1/flavorId/0_ o8ql2x0l /name/a.mp4/index.m3u8 I paste this link in Internet Download Manager but it gives this error. --- Cannot download this file. Bad request. I am still not able to understand what to do after the getting the first link and how to modify it for getting m3u8 link. Is ' /a.mp4/index.m3u8 ' same for all videos? Please provide a detailed procedure. I am new to this. Thank you. |
#56
|
|||
|
|||
Re: Downloading from voot.comurl snooper wont work with laptops or pc who using wireless internet! as adapter may not dectect!
|
#57
|
|||
|
|||
Re: Downloading from voot.comQuote:
in developer tools watching network tab there shows all links that needs |
#58
|
|||
|
|||
Re: Downloading from voot.comQuote:
its ok snooper works fine in my home pc which is wired network but in office pc its not dectecting as i am having wireless internet card |
#59
|
|||
|
|||
Re: Downloading from voot.comQuote:
there from network list you search link that you need, right-click-mouse on the link, shows context menu in that click 'Copy Link Address' difficult about a simple |
#60
|
|||
|
|||
Re: Downloading from voot.comhi
two codes php and python no need vpn it works without indian ip Code:
<?php $idcontent = substr($argv[1], -6); $data = '{"initObj":{"Locale":{"LocaleLanguage":"","LocaleCountry":"","LocaleDevice":"","LocaleUserState":"Unknown"},"Platform":"Web","SiteGuid":"","DomainID":0,"UDID":"","ApiUser":"tvpapi_225","ApiPass":"11111"},"MediaID":"' . $idcontent . '","mediaType":0,"picSize":"full","withDynamic":false}'; $time_start = microtime(true); $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, 'http://tvpapi-as.ott.kaltura.com/v3_4/gateways/jsonpostgw.aspx?m=GetMediaInfo'); curl_setopt($ch, CURLOPT_POST, 1); curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/json;charset=utf-8')); curl_setopt($ch, CURLOPT_POSTFIELDS, $data); curl_setopt($ch, CURLOPT_REFERER, $argv[1]); curl_setopt($ch, CURLOPT_ENCODING , "gzip"); curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (X11; Linux i686; rv:41.0) Gecko/20100101 Firefox/41.0 Iceweasel/41.0"); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $result = curl_exec($ch); curl_close ($ch); preg_match('/"Format":"dash Main".*?CoGuid":"(.*?)"/', $result, $ids); preg_match('/"MediaName":"(.*?)"/', $result, $name); $name= str_ireplace(' ', '-', $name[1]); preg_match('/(.*?)_0_/', $ids[1], $entryId); preg_match('/(.*?),/', $ids[1], $low); preg_match('/0_.*?_(.*)/', $low[1], $lflavorId); preg_match('/,(.*?),/', $ids[1], $medium); preg_match('/0_.*?_(.*)/', $medium[1], $mflavorId); preg_match('/.*?,.*?,(.*)/', $ids[1], $high); preg_match('/0_.*?_(.*)/', $high[1], $hflavorId); $link = 'http://video.voot.com/enc/fhls/p/1982551/sp/198255100/serveFlavor/entryId/' . $entryId[1] . '/v/2/pv/1/flavorId/' . $hflavorId[1] . '/name/a.mp4/index.m3u8'; echo "$link\n\n"; echo "Starting livestreamer...\n\n"; echo shell_exec("livestreamer \"hls://$link\" best -o $name.ts&"); echo "Done.\n"; ?> Code:
import requests import re import os import sys idcontent= sys.argv[1][-6:] pageUrl2= 'http://tvpapi-as.ott.kaltura.com/v3_4/gateways/jsonpostgw.aspx?m=GetMediaInfo' headers = {'User-Agent': 'Mozilla/5.0 (X11; Linux i686; rv:41.0) Gecko/20100101 Firefox/41.0 Iceweasel/41.0.2', 'Referer': 'http://www.voot.com/', 'Content-Type': 'application/json;charset=utf-8'} data= '{"initObj":{"Locale":{"LocaleLanguage":"","LocaleCountry":"","LocaleDevice":"","LocaleUserState":"Unknown"},"Platform":"Web","SiteGuid":"","DomainID":0,"UDID":"","ApiUser":"tvpapi_225","ApiPass":"11111"},"MediaID":"' + idcontent + '","mediaType":0,"picSize":"full","withDynamic":false}' source = requests.post(pageUrl2, headers=headers, data=data) name = re.findall('"MediaName":"(.*?)"', source.text)[0].replace(' ', '-') ids=',' + re.findall('"Format":"dash Main".*?CoGuid":"(.*?)"', source.text)[0] + ',' quality = re.search(r',(.*?),(.*?),(.*?),', ids) entryIdflavorId= re.search(r'(0_.*?)\_(0_.*)', quality.group(3)) link = 'http://video.voot.com/enc/fhls/p/1982551/sp/198255100/serveFlavor/entryId/' + entryIdflavorId.group(1) + '/v/2/pv/1/flavorId/' + entryIdflavorId.group(2) + '/name/a.mp4/index.m3u8' print link command = 'livestreamer "hls://' + link + '" best -o ' + name + '.ts' os.system(command) Code:
php voot.php "http://www.voot.com/shows/khatron-ke-khiladi-s08/8/368214/the-grand-finale/389224" Code:
http://video.voot.com/enc/fhls/p/1982551/sp/198255100/serveFlavor/entryId/0_vv9bzx3d/v/2/pv/1/flavorId/0_o8ql2x0l/name/a.mp4/index.m3u8 Starting livestreamer... [download][..ason-08---Episode-20.ts] Written 6.5 MB (9s @ 708.4 KB/s) Code:
python voot.py "http://www.voot.com/shows/khatron-ke-khiladi-s08/8/368214/the-grand-finale/389224" Code:
http://video.voot.com/enc/fhls/p/1982551/sp/198255100/serveFlavor/entryId/0_vv9bzx3d/v/2/pv/1/flavorId/0_o8ql2x0l/name/a.mp4/index.m3u8 [cli][info] Found matching plugin stream for URL hls://http://video.voot.com/enc/fhls/p/1982551/sp/198255100/serveFlavor/entryId/0_vv9bzx3d/v/2/pv/1/flavorId/0_o8ql2x0l/name/a.mp4/index.m3u8 [cli][info] Available streams: live (worst, best) [cli][info] Opening stream: live (hls) [download][..ason-08---Episode-20.ts] Written 9.8 MB (12s @ 798.5 KB/s) |
Tags: vootcom |
Thread Tools | |
Display Modes | |
|
|