View Single Post
  #73  
Old 06-13-2014, 04: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