Hallo
I would like to create a custom profile for the H264 export. When I use x264 I often use Constant Rate Factor because this brings better quality than a variabel Bitrate. But I have no idea where I can include my custom x264 settings to the profile. e.g.
Here I changed only the bitrate to crf=16.
f=mp4 crf=16 hq=1 acodec=aac ab=128k ar=48000 pix_fmt=yuv420p vcodec=libx264 minrate=0 g=250 bf=3 b_strategy=1 subcmp=2 cmp=2 coder=1 flags=+loop flags2=dct8x8 qmax=51 subq=8 qmin=10 qcomp=0.6 qdiff=4 trellis=1 aspect=%dar
And this is what I get (Checked with mediainfo)
cabac=1 / ref=5 / deblock=1:-1:-1 / analyse=0x3:0x113 / me=umh / subme=8 / psy=1 / psy_rd=1,00:0,20 / mixed_ref=1 / me_range=16 / chroma_me=1 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=1 / chroma_qp_offset=-3 / sliced_threads=0 / nr=2 / decimate=1 / mbaff=0 / constrained_intra=0 / bframes=3 / b_pyramid=2 / b_adapt=2 / b_bias=0 / direct=3 / wpredb=1 / wpredp=2 / keyint=250 / keyint_min=25 / scenecut=40 / intra_refresh=0 / rc_lookahead=40 / rc=crf / mbtree=1 / crf=16,0 / qcomp=0,60 / qpmin=0 / qpmax=51 / qpstep=4 / ip_ratio=1,40 / aq=1:1,00
But when I enter something like this
f=mp4 crf=16 hq=1 acodec=aac ab=224k ar=48000 pix_fmt=yuv420p vcodec=libx264 minrate=0 g=250 bf=3 b_strategy=1 subcmp=2 cmp=2 coder=1 flags=+loop flags2=dct8x8 deblock=-1:-1 direct_pred=auto frameref=5 b_adapt=2 me=umh chroma_me=1 rc_lookahead=50 mbtree=1 qpmax=51 subq=8 qpmin=10 qcomp=0.6 qdiff=4 trellis=1 aspect=%dar keyint=250 cqm=flat weight_b noglobal_header mixed_refs level_idc=51 partitions=all psy-rd=1:0,15
Here I wanted to change psy-rd, I get something like this (checked with mediainfo)
cabac=1 / ref=1 / deblock=1:0:0 / analyse=0x3:0 / me=dia / subme=8 / psy=0 / mixed_ref=0 / me_range=4 / chroma_me=0 / trellis=1 / 8x8dct=1 / cqm=0 / deadzone=21,11 / fast_pskip=0 / chroma_qp_offset=0 / threads=1 / sliced_threads=0 / nr=0 / decimate=1 / interlaced=tff / bluray_compat=0 / constrained_intra=0 / bframes=3 / b_pyramid=0 / b_adapt=1 / b_bias=0 / direct=2 / weightb=0 / open_gop=0 / weightp=0 / keyint=250 / keyint_min=25 / scenecut=0 / intra_refresh=0 / rc=crf / mbtree=0 / crf=16.0 / qcomp=0.60 / qpmin=10 / qpmax=51 / qpstep=4 / ip_ratio=1.25 / pb_ratio=1.25 / aq=1:1.00
So e.g. deblock=1:0:0 does not accept the setting. According to the x264 manual you are allowed to seperate option with : or |.
Can somebody explain me how to change these settings here, please?

Well thank you very much. After trying a little bit around, I finally got some results. I was able to change some parameters.
THX