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
  #71  
Old 06-13-2014, 04:50 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 enrud View Post
this fixed it! Thank you. but now, it appears as if my computer isnt letting python create a temp file? at leas that what appears to be the issue
"
I:\Python27>decrypt.py video-4300000.m3u8 audio-en-64000-286493787.m3u8 ScrubsHD
Test.ts.prdy ScrubsHDTestaudio.aac crypt0.key output.mp4
Traceback (most recent call last):
File "I:\Python27\decrypt.py", line 127, in <module>
sys.argv[6])
File "I:\Python27\decrypt.py", line 103, in decrypt
with file(muxed_temp_name, 'rb') as muxed_temp:
IOError: [Errno 2] No such file or directory: 'c:\\users\\angel\\appdata\\local\
\temp\\tmpqfdxqa.ts'

I:\Python27>"
Reply With Quote
  #72  
Old 06-13-2014, 05:16 PM
WHOOKIDSON WHOOKIDSON is offline
Senior Member
 
Join Date: Dec 2010
Posts: 142
WHOOKIDSON 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
this fixed it! Thank you. but now, it appears as if my computer isnt letting python create a temp file? at leas that what appears to be the issue
"
I:\Python27>decrypt.py video-4300000.m3u8 audio-en-64000-286493787.m3u8 ScrubsHD
Test.ts.prdy ScrubsHDTestaudio.aac crypt0.key output.mp4
Traceback (most recent call last):
File "I:\Python27\decrypt.py", line 127, in <module>
sys.argv[6])
File "I:\Python27\decrypt.py", line 103, in decrypt
with file(muxed_temp_name, 'rb') as muxed_temp:
IOError: [Errno 2] No such file or directory: 'c:\\users\\angel\\appdata\\local\
\temp\\tmpqfdxqa.ts'

I:\Python27>"
can you post the steps you took?
Reply With Quote
  #73  
Old 06-13-2014, 05:24 PM
enrud enrud is offline
Member
 
Join Date: Jun 2014
Posts: 33
enrud is on a distinguished road
Default

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


the error occurs because the temp file doesn't exist. That is probably because something didn't happen in the ffmpeg muxing.

Change line 96 to add a print to the beginning of the statement as in:
Code:
        print subprocess.Popen([ffmpeg, '-i', video_temp_name, '-i', audio_temp_name, '-acodec', 'copy', '-vcodec', 'copy', muxed_temp_name], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
Post the results
Reply With Quote
  #74  
Old 06-13-2014, 06:06 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 enrud View Post
the error occurs because the temp file doesn't exist. That is probably because something didn't happen in the ffmpeg muxing.

Change line 96 to add a print to the beginning of the statement as in:
Code:
        print subprocess.Popen([ffmpeg, '-i', video_temp_name, '-i', audio_temp_name, '-acodec', 'copy', '-vcodec', 'copy', muxed_temp_name], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()
Post the results
edit: This is what i got

I:\Python27>decrypt.py video-4300000.m3u8 audio-en-64000-286493787.m3u8 ScrubsHD
Test.ts.prdy ScrubsHDTestaudio.aac crypt0.key output.mp4
('', 'ffmpeg version N-63930-g1c5aa64 Copyright (c) 2000-2014 the FFmpeg develop
ers\r\n built on Jun 12 2014 22:14:34 with gcc 4.8.3 (GCC)\r\n configuration:
--enable-gpl --enable-version3 --disable-w32threads --enable-avisynth --enable-b
zlib --enable-fontconfig --enable-frei0r --enable-gnutls --enable-iconv --enable
-libass --enable-libbluray --enable-libcaca --enable-libfreetype --enable-libgme
--enable-libgsm --enable-libilbc --enable-libmodplug --enable-libmp3lame --enab
le-libopencore-amrnb --enable-libopencore-amrwb --enable-libopenjpeg --enable-li
bopus --enable-librtmp --enable-libschroedinger --enable-libsoxr --enable-libspe
ex --enable-libtheora --enable-libtwolame --enable-libvidstab --enable-libvo-aac
enc --enable-libvo-amrwbenc --enable-libvorbis --enable-libvpx --enable-libwavpa
ck --enable-libwebp --enable-libx264 --enable-libx265 --enable-libxavs --enable-
libxvid --enable-decklink --enable-zlib\r\n libavutil 52. 89.100 / 52. 89.
100\r\n libavcodec 55. 66.100 / 55. 66.100\r\n libavformat 55. 43.100 /
55. 43.100\r\n libavdevice 55. 13.101 / 55. 13.101\r\n libavfilter 4.
8.100 / 4. 8.100\r\n libswscale 2. 6.100 / 2. 6.100\r\n libswresamp
le 0. 19.100 / 0. 19.100\r\n libpostproc 52. 3.100 / 52. 3.100\r\nc:\\u
sers\\angel\\appdata\\local\\temp\\tmpycdx4j.ts: Invalid data found when process
ing input\r\n')
Traceback (most recent call last):
File "I:\Python27\decrypt.py", line 127, in <module>
sys.argv[6])
File "I:\Python27\decrypt.py", line 103, in decrypt
with file(muxed_temp_name, 'rb') as muxed_temp:
IOError: [Errno 2] No such file or directory: 'c:\\users\\angel\\appdata\\local\
\temp\\tmpcmp9le.ts'

I:\Python27>
Reply With Quote
  #75  
Old 06-13-2014, 06:19 PM
enrud enrud is offline
Member
 
Join Date: Jun 2014
Posts: 33
enrud is on a distinguished road
Default

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


decryption is failing.

what is the movieid of the content? And can you post the M3U8 files and the key file?
Reply With Quote
  #76  
Old 06-13-2014, 06:29 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 enrud View Post
decryption is failing.

what is the movieid of the content? And can you post the M3U8 files and the key file?
the movieid? and here is the video file and m3u8 + keyfiles


https://www.dropbox.com/sh/ynohnax12...sREoOHZF2jvxsa
Reply With Quote
  #77  
Old 06-13-2014, 06:32 PM
WHOOKIDSON WHOOKIDSON is offline
Senior Member
 
Join Date: Dec 2010
Posts: 142
WHOOKIDSON 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
the movieid? and here is the video file and m3u8 + keyfiles


https://www.dropbox.com/sh/ynohnax12...sREoOHZF2jvxsa
I think he may be talking about the Netflix ID of it (it might be in the address bar of the video)

btw I got the exact same error as you .. it produces an empty .ts which of course indicates the decryption failed as he stated before .. I tried his decrypt.py script with your Shrek sample and it worked perfectly btw .. so yea .. the decryption is the problem
Reply With Quote
  #78  
Old 06-13-2014, 06:33 PM
enrud enrud is offline
Member
 
Join Date: Jun 2014
Posts: 33
enrud is on a distinguished road
Default

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


When you browse to the movie in the browser, it will be to a url that looks like:

http://www.netflix.com/WiMovie/{movieid}?trkid={trackid}
Reply With Quote
  #79  
Old 06-13-2014, 06:47 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 enrud View Post
When you browse to the movie in the browser, it will be to a url that looks like:

http://www.netflix.com/WiMovie/{movieid}?trkid={trackid}
oh, okay. here it is
http://www.netflix.com/WiPlayer?movi...&trkid=3325854
Reply With Quote
  #80  
Old 06-13-2014, 07:17 PM
enrud enrud is offline
Member
 
Join Date: Jun 2014
Posts: 33
enrud is on a distinguished road
Default

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


The key is wrong. Curious.
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 08:01 AM.


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