Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.keyQuote:
|
Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.keyI sorta fixed that issue .. I edited the decrypt.py and changed the audio instruction in ffmpeg to "libvo_aacenc" instead of "copy"
These are the EDITED lines below Line 96: subprocess.Popen([ffmpeg, '-i', video_temp_name, '-i', audio_temp_name, '-acodec', 'libvo_aacenc', '-vcodec', 'copy', muxed_temp_name], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate() Line 111: subprocess.Popen([ffmpeg, '-i', output_temp_name, '-acodec', 'libvo_aacenc', '-vcodec', 'copy', '-bsf:a', 'aac_adtstoasc', out_file], Now I can hear audio and it plays through out fine .. cept for you can tell a little tiny drop or something in the audio I'm not sure at all but I think while it's decrypting in the temp folder it pieces the audio back together as full .. I believe they are in chunks so that's why it sounds like that when you play the output.mp4 As its decrypting in the temp folder I was watching it and aac files were being produced over and over I assume it was decrypting pieces by pieces then joined them all into 1 AAC then muxed with FFMPEG .. |
Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.keyQuote:
|
Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.keyQuote:
Each audio chunk gets mixed with each corresponding video chunk. All mixed pieces are concatenation together and finally converted to .mp4 The audio pieces are not encrypted, also. Just the video. |
Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.keyAlso you only need to convert the audio once. I would do it on the second ffmpeg command. That might resolve your audio issues.
|
Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.keyQuote:
|
Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.keyQuote:
question .. if I DELETE Line 114 .. will it KEEP the temp.ts file? os.unlink(output_temp_name) Edit: It worked .. |
Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.keyQuote:
|
Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.keyQuote:
|
Re: I downloaded Netflix videos in HD, I can play off line,need a little help W/.keyQuote:
|
All times are GMT -6. The time now is 12:17 AM. |