How to make sure settings are applied (raw AVI to mp4/h.264)

Discuss about generic usage of MediaCoder.

Moderator: HuggiL

Post Reply
Jaska
Beginner
Beginner
Posts: 2
Joined: Thu Jan 07, 2010 1:22 am

How to make sure settings are applied (raw AVI to mp4/h.264)

Post by Jaska » Thu Jan 07, 2010 1:39 am

Hello forum and sorry for this easy question I'm going to ask. Search didnt bring up anything.

Encoding raw avi to h.264 with mode 3-pass

How can I make sure all the settings I've changed will be applied to the analyze/encode?

As far I can see only this on the Video Options box

Code: Select all

# ".\codecs\x264.exe" "$(SourceFile)" --no-progress --profile high --preset medium --keyint 300 --min-keyint 30 --non-deterministic --bitrate $(VideoBitrate) --qcomp 0.6 --threads auto  --stats "$(PassLogFile)" --pass 1 -o NUL
# ".\codecs\x264.exe" "$(SourceFile)" --no-progress --profile high --preset medium --keyint 300 --min-keyint 30 --non-deterministic --bitrate $(VideoBitrate) --qcomp 0.6 --threads auto  --stats "$(PassLogFile)" --pass 3 -o NUL
# ".\codecs\x264.exe" "$(SourceFile)" --no-progress --profile high --preset medium --keyint 300 --min-keyint 30 --non-deterministic --bitrate $(VideoBitrate) --qcomp 0.6 --threads 6  --stats "$(PassLogFile)" --pass 2 -o "$(DestFile)"
With legacy command-line option enabled it shows rest of the settings on the commandline I've changed but stops with error... (only firstpass line included here)

Code: Select all

# ".\codecs\x264.exe" "$(SourceFile)" --no-psnr --no-ssim --keyint 300 --min-keyint 30 --non-deterministic --me esa --merange 64 --subme 1 --partitions all --8x8dct --bframes 5 --direct auto --mixed-refs --trellis 1 --weightb --bitrate $(VideoBitrate) --qcomp 0.6 --threads auto  --stats "$(PassLogFile)" --pass 1 -o NUL
So does mediacoder load rest of the settings from some file or it just doesnt apply any extra settings, how does it work?

Thank you in advance and sorry if this is answered somewhere :|

Post Reply