I'm trying to create a test mp4 with it using external encoders. Video encoder is set to x264 - HQ, audio encoder is set to qaac, multiplexer is set to MP4Box. For x264 - HQ, I'm using x264_64.exe (location set correctly), the command arguments are,
--crf 19 --preset medium --level 4.1 --keyint 24 --tune film --min-keyint 1 --bluray-compat --b-pyramid none --demuxer raw --input-csp i420 --input-res %(width)x%(height) --fps %(fpsnum)/%(fpsden) -o "%(tempvideofile)" -
and the output filename is,
%(outputname).264
For qaac, the command arguments are,
-q 0.80 -ignorelength -if - -of "%(tempaudiofile)"
I'm not sure about the output filename. Maybe that's what giving me the oroblem. Right now, it's,
%(outputname).m4a
I had tried %(outputname).audio but that gave me a problem as well. The problem is that every time I try to export the mp4, I'm given the error message,
The audio encoding process has prematurely exited with an error code of 1 (00000001). Check the log for possible error messages.
[*] Beginning dub operation.
[i] Dub: Input (decompression) format is: YUV420P16.
[i] Dub: Output (compression) format is: RGBA32.
[*] Ending operation.
[*] Beginning dub operation.
[i] Dub: Input (decompression) format is: YUV420P16.
[i] Dub: Output (compression) format is: YUV420.
[i] Dub: Command line encoding started with format: YUV420.
[i] video encoder: "C:\Users\Bruce\Desktop\x264_64.exe" --crf 19 --preset
medium --level 4.1 --keyint 24 --tune film --min-keyint 1 --bluray-compat
--b-pyramid none --demuxer raw --input-csp i420 --input-res 1920x800 --fps
24000/1001 -o "C:\Users\Bruce\Desktop\test.mp4.264" -
[i] audio encoder: "C:\Users\Bruce\Desktop\qaac.exe" -q 0.80 -ignorelength -if
- -of "C:\Users\Bruce\Desktop\test.mp4.m4a"
[i] AudioEnc: invalid option -- g
[E] Error: The audio encoding process has prematurely exited with an error
code of 1 (00000001). Check the log for possible error messages.
[*] Ending operation.
--crf 19 --preset medium --level 4.1 --keyint 24 --tune film --min-keyint 1 --bluray-compat --b-pyramid none --demuxer raw --input-csp i420 --input-res %(width)x%(height) --fps %(fpsnum)/%(fpsden) -o "%(tempvideofile)" -
and the output filename is,
%(outputname).264
For qaac, the command arguments are,
-q 0.80 -ignorelength -if - -of "%(tempaudiofile)"
I'm not sure about the output filename. Maybe that's what giving me the oroblem. Right now, it's,
%(outputname).m4a
I had tried %(outputname).audio but that gave me a problem as well. The problem is that every time I try to export the mp4, I'm given the error message,
The audio encoding process has prematurely exited with an error code of 1 (00000001). Check the log for possible error messages.
[*] Beginning dub operation.
[i] Dub: Input (decompression) format is: YUV420P16.
[i] Dub: Output (compression) format is: RGBA32.
[*] Ending operation.
[*] Beginning dub operation.
[i] Dub: Input (decompression) format is: YUV420P16.
[i] Dub: Output (compression) format is: YUV420.
[i] Dub: Command line encoding started with format: YUV420.
[i] video encoder: "C:\Users\Bruce\Desktop\x264_64.exe" --crf 19 --preset
medium --level 4.1 --keyint 24 --tune film --min-keyint 1 --bluray-compat
--b-pyramid none --demuxer raw --input-csp i420 --input-res 1920x800 --fps
24000/1001 -o "C:\Users\Bruce\Desktop\test.mp4.264" -
[i] audio encoder: "C:\Users\Bruce\Desktop\qaac.exe" -q 0.80 -ignorelength -if
- -of "C:\Users\Bruce\Desktop\test.mp4.m4a"
[i] AudioEnc: invalid option -- g
[E] Error: The audio encoding process has prematurely exited with an error
code of 1 (00000001). Check the log for possible error messages.
[*] Ending operation.