Audio/video stream recording forums

Attention Visitor:
You may have to register or log in before you can post:
  • Click the register link to sign up.
  • Registered members please fill in the form below and click the "Log in" button.
To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Audio/video stream recording forums > Streaming media recording forum > Video stream recording
Register FAQ Members List Calendar Mark Forums Read

Reply Post New Thread
 
Thread Tools Display Modes
  #21  
Old 02-13-2014, 10:02 PM
Mario8790 Mario8790 is offline
Junior Member
 
Join Date: Feb 2014
Posts: 3
Mario8790 is on a distinguished road
Default

Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.key


Quote:
Originally Posted by blimey View Post
You must not be using the app mentioned at the start of this thread, or if you are using the app, you don't have netflix IPA version 4.0 or below.

The isma/ismv are microsoft formats. How are you getting these files?
I think its the netflix app I have the latest one I think, anyway I can the 4.0 version?
Reply With Quote
  #22  
Old 02-15-2014, 01:08 AM
shortkud shortkud is offline
Junior Member
 
Join Date: Feb 2014
Posts: 1
shortkud is on a distinguished road
Default

Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.key


I found this 4.0 IPA and have tested it and it does work. Now I can't confirm it hasn't been tampered with in anyway so just FYI.

http://uploaded.net/file/32k1g1ne

The problem with this method while it does work, is that for me full quality ends up being 720x480. While with the latest version of netflix which results in the ISMA and ISMV files are very likely full 1080p from the file sizes at 100% quality.

The key method for the ISMV files is below. I can only find very little information about that keyformat but being that HLS streaming and ISMV/ISMA are pretty well known I imagine it has to be possible to decrypt the video in a similar fashion as the AES method. I'm not sure where the key might be stored though if it is on the iOS device at all.

#EXT-X-KEY:METHOD=ISO-23001-7,URI="+g=",KEYFORMAT="com.apple.streamingkeydeliv ery",KEYFORMATVERSIONS="1"
Reply With Quote
  #23  
Old 02-20-2014, 03:39 PM
ehurdler ehurdler is offline
Senior Member
 
Join Date: Feb 2014
Location: NY
Posts: 126
ehurdler is on a distinguished road
Default

Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.key


Quote:
Originally Posted by KSV View Post
here is my UVD Converter.

Usage:
Code:
php UVDConvert.php <m3u8_file> <ts.prdy_file> <key_file> <output_file>
Video:
Code:
php UVDConvert.php 100000-1.m3u8 1043168926.ts.prdy crypt0.key video.ts
Audio:
Code:
php UVDConvert.php en-64000.m3u8 1043128474.aac crypt0.key audio.aac
Remux:
Code:
ffmpeg -i video.ts -i audio.aac -bsf:a aac_adtstoasc -c copy movie.mp4
I tried this method. I downloaded, or created I guess the UVDConvert.php file from the linked ksv_uvd_converter.txt. I run with the syntax/example above and I get the following error in Terminal. I am using a Mac btw. Fatal error: Call to undefined function mcrypt_module_open() in /path-to-file/UVDConvert.php on line 92.

Any ideas? I downloaded the Shrek example as stated in earlier posts. I do not have issues running other php scripts.

Nevermind!!! My Fault, I will leave this post just to show the error and letting people know that I had to ensure mcrypt had to be configured correctly and PATH set. I following the following info:


Go to Terminal
Enter which php
If it says /usr/bin/php, then proceed to 3.
Enter sudo nano ~/.bash_profile (or sudo vim ~/.bash_profile if you know how to use it)
then paste this export PATH="/Applications/XAMPP/xamppfiles/bin:$PATH"
ctrl - O then enter to save, then ctrl - X to exit.
restart terminal.
Enter which php
If you did it right, it should be the same as the path in #4.

Last edited by ehurdler : 02-20-2014 at 04:06 PM. Reason: My fault, wanted to give info incase anyone else makes same dumb mistake.
Reply With Quote
  #24  
Old 02-21-2014, 12:10 AM
KSV KSV is offline
Senior Member
 
Join Date: Apr 2011
Posts: 853
KSV is on a distinguished road
Cool

Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.key


I have posted a new version of my UVDConvert.php which improves working with large files and better error handling.
Reply With Quote
  #25  
Old 02-21-2014, 07:25 PM
ItsAngel ItsAngel is offline
Senior Member
 
Join Date: Jul 2012
Posts: 102
ItsAngel is on a distinguished road
Default

Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.key


Quote:
Originally Posted by blimey View Post
You must not be using the app mentioned at the start of this thread, or if you are using the app, you don't have netflix IPA version 4.0 or below.

The isma/ismv are microsoft formats. How are you getting these files?
That's the super HD files from the newest Netflix IPA.
It uses KEYFORMAT: Com.apple.streamingkeydelivery
Not sure if the key is stored on the device or not.
The netflix downloader won't even play these files. It plays netflix 4.0 IPA< perfectly though

Last edited by ItsAngel : 02-22-2014 at 04:33 PM.
Reply With Quote
  #26  
Old 02-22-2014, 03:11 PM
ItsAngel ItsAngel is offline
Senior Member
 
Join Date: Jul 2012
Posts: 102
ItsAngel is on a distinguished road
Default

Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.key


Quote:
Originally Posted by KSV View Post
here is my UVD Converter.

Usage:
Code:
php UVDConvert.php <m3u8_file> <ts.prdy_file> <key_file> <output_file>
Video:
Code:
php UVDConvert.php 100000-1.m3u8 1043168926.ts.prdy crypt0.key video.ts
Audio:
Code:
php UVDConvert.php en-64000.m3u8 1043128474.aac crypt0.key audio.aac
Remux:
Code:
ffmpeg -i video.ts -i audio.aac -bsf:a aac_adtstoasc -c copy movie.mp4
Thank you SO much! I just found out how to use this and it decrypts the video seamlessly!

Last edited by ItsAngel : 02-22-2014 at 04:32 PM.
Reply With Quote
  #27  
Old 02-23-2014, 07:17 AM
Tri Tri is offline
Junior Member
 
Join Date: Jan 2012
Posts: 17
Tri is on a distinguished road
Default

Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.key


Does this works method on PC?
Reply With Quote
  #28  
Old 02-23-2014, 10:29 AM
ItsAngel ItsAngel is offline
Senior Member
 
Join Date: Jul 2012
Posts: 102
ItsAngel is on a distinguished road
Default

Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.key


Quote:
Originally Posted by Tri View Post
Does this works method on PC?
Yes it does, you must first install PHP then run the script on command prompt
Reply With Quote
  #29  
Old 02-23-2014, 11:59 AM
henryperu77 henryperu77 is offline
Junior Member
 
Join Date: Feb 2014
Posts: 23
henryperu77 is on a distinguished road
Default

Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.key


Does it work on IPAD 2?? i dont have an iphone...
Reply With Quote
  #30  
Old 02-23-2014, 12:40 PM
Tri Tri is offline
Junior Member
 
Join Date: Jan 2012
Posts: 17
Tri is on a distinguished road
Default

Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.key


Quote:
Originally Posted by ItsAngel View Post
Yes it does, you must first install PHP then run the script on command prompt
I asked for downloading video method not converting actually.Does the UVD converter downloads video?
Reply With Quote
Reply Post New Thread
Tags: , , , , ,



Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump


All times are GMT -6. The time now is 09:46 PM.


Powered by All-streaming-media.com; 2006-2011
vB forum hacked with Zoints add-ons