Quote:
Originally Posted by enrud
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>