The streams don’t have any audio, so I wanted my <= 64kbps to be a low quality video stream that would look passable on a mobile phone. But it’s not just getting a stream to be <=64kps; none of the renditions made by the transcoder pass the mediastreamvalidator unless the BANDWIDTH setting in the playlist overshoots the regular bit rate that occurs after the first minute of running. If all of the stream options in the playlist have the same high BANDWIDTH setting to pass validation, they aren’t going to useful for adaptive bit rate streaming. I asked over at the apple forum if it would be okay if it fails mediastreamvalidator since it does get to the normal bit rate after a short time, and was told “You should try to maintain the bit rate; if app review checks it, it may fail”.
After the first minute of connecting the camera and starting to make HLS packets, the transcoder seems pretty good at maintaining a consistent data rate within a small amount of variance. I still don’t understand why this happens, I can only guess that the transcoder doesn’t fully compress the first chunks so that it can create them more quickly (??). Using an audio track doesn’t really make that much sense for us since the videos have no audio. So we could start the stream and make the user wait for a minute for it to ‘settle down’ to the consistent rate, but it’s too long of a wait. If it’s impossible to avoid it then fair enough. But I wanted to make sure that it can’t be avoided before giving up. Thank you for trying to help.
The stream from the camera is H.264 Main. Is there a way that I can PM you the URL for the camera I’m testing with? (There’s a username and password in the URL that aren’t public.)
Here’s the transcoder settings:
<?xml version="1.0" encoding="UTF-8"?>
<Root>
<Transcode>
<Description></Description>
<Decode>
<Video>
<Implementation>default</Implementation>
<Deinterlace>false</Deinterlace>
</Video>
</Decode>
<Encodes>
<Encode>
<Name>low</Name>
<Enable>true</Enable>
<Description></Description>
<StreamName>${SourceStreamName}_64000</StreamName>
<Video>
<Codec>H.264</Codec>
<Implementation>default</Implementation>
<GPUID>-1</GPUID>
<Profile>baseline</Profile>
<Bitrate>50000</Bitrate>
<KeyFrameInterval>
<FollowSource>true</FollowSource>
<Interval>0</Interval>
</KeyFrameInterval>
<FrameSize>
<FitMode>fit-width</FitMode>
<Width>320</Width>
<Height>240</Height>
<Crop>0,0,0,0</Crop>
<SourceRectangle></SourceRectangle>
</FrameSize>
</Video>
<Audio>
<Codec>Disable</Codec>
<Bitrate>0</Bitrate>
</Audio>
<Properties>
<Property>
<Name>logVideoEncodingParameters</Name>
<Value>true</Value>
<Type>Boolean</Type>
</Property>
</Properties>
</Encode>
<Encode>
<Name>med</Name>
<Enable>true</Enable>
<Description></Description>
<StreamName>${SourceStreamName}_150000</StreamName>
<Video>
<Codec>H.264</Codec>
<Implementation>default</Implementation>
<GPUID>-1</GPUID>
<Profile>baseline</Profile>
<Bitrate>130000</Bitrate>
<KeyFrameInterval>
<FollowSource>true</FollowSource>
<Interval>0</Interval>
</KeyFrameInterval>
<FrameSize>
<FitMode>fit-width</FitMode>
<Width>640</Width>
<Height>480</Height>
<Crop>0,0,0,0</Crop>
<SourceRectangle></SourceRectangle>
</FrameSize>
</Video>
<Audio>
<Codec>Disable</Codec>
<Bitrate>0</Bitrate>
</Audio>
</Encode>
</Encodes>
</Transcode>
</Root>
Log of transcoder params:
2014-05-05 13:59:40 PDT comment server INFO 200 - JNI:VideoDecoderH264.updateDecodeInfo[_defaultVHost_:live/_definst_/22503.stream]: aspect:4x3 frame:1280x960 display:1280x960 frameRate:29.97 - - - 4.895 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - JNI:TranscoderSession.videoEncoderAdd[_defaultVHost_:live/_definst_/22503.stream:low]: Create video encoder: H.264: default - - - 4.896 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - TranscoderWorkerVideoEncoder.setupEncoder[_defaultVHost_:live/_definst_/22503.stream:low]: Video encoding parameters - - - 4.909 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: profile_id: 0=H264PROFILE_BASELINE, 2=H264PROFILE_MAIN, 5=H264PROFILE_HIGH - - - 4.91 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.profile_id: 0 - - - 4.91 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: level_id: = 10 -> 1.0, .. 51 -> 5.1 - - - 4.91 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.level_id: 100 - - - 4.91 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: idr_interval: gop length - - - 4.911 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.idr_interval: 0 - - - 4.911 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: reordering_delay: max distance between two P frames - - - 4.911 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.reordering_delay: 1 - - - 4.911 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: use_b_slices - - - 4.912 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.use_b_slices: 0 - - - 4.913 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: interlace_mode: 0=H264_PROGRESSIVE, 1=H264_INTERLACED, 2=H264_MBAFF - - - 4.914 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.interlace_mode: 0 - - - 4.915 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: def_horizontal_size - - - 4.916 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.def_horizontal_size: 320 - - - 4.919 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: def_vertical_size - - - 4.92 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.def_vertical_size: 240 - - - 4.923 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # double: frame_rate - - - 4.923 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.frame_rate: 12.0 - - - 4.927 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: num_reference_frames - - - 4.933 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.num_reference_frames: 3 - - - 4.933 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: search_range: motion search: spatial search range - - - 4.933 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.search_range: 72 - - - 4.933 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: rd_optimization: motion search: rate-distortion optimization - - - 4.933 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.rd_optimization: 1 - - - 4.934 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: max_l0_active: motion search: max index of reference frames in list0 - - - 4.934 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.max_l0_active: 0 - - - 4.934 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: max_l1_active: motion search: max index of reference frames in list1 - - - 4.934 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.max_l1_active: 0 - - - 4.934 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: quant_pI: macro blocks: quantization parameter - - - 4.934 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.quant_pI: 24 - - - 4.935 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: quant_pP: macro blocks: quantization parameter - - - 4.935 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.quant_pP: 25 - - - 4.935 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: quant_pB: macro blocks: quantization parameter - - - 4.935 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.quant_pB: 27 - - - 4.935 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: bit_rate_mode: bit rate stuff: 0=H264_CBR, 1=H264_CQT, 2=H264_VBR or 3=H264_TQM - - - 4.935 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.bit_rate_mode: 2 - - - 4.944 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: bit_rate_buffer_size: bit rate stuff: vbv buffer size - - - 4.944 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.bit_rate_buffer_size: 574992 - - - 4.944 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: bit_rate: bit rate stuff: avg bitrate; if 0, use above quantization parameters - - - 4.945 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.bit_rate: 50000 - - - 4.945 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: max_bit_rate: bit rate stuff: max bitrate, used in VBR mode - - - 4.945 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.max_bit_rate: 55000 - - - 4.945 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: inter_search_shape: prediction: 0=H264_INTERSEARCH_16x16 (use only 16x16 block size) or 1=H264_INTERSEARCH_8x8 (use block size down to 8x8) - - - 4.946 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.inter_search_shape: 1 - - - 4.947 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: entropy_coding_mode: coding mode: 0=H264_CAVLC or 1=H264_CABAC - - - 4.954 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.entropy_coding_mode: 0 - - - 4.954 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: use_hadamard_transform: coding mode: 0=SAD is used, 1=SATD is used - - - 4.954 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.use_hadamard_transform: 0 - - - 4.954 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: sar_width: vui parameters: sample aspect ratio: horizontal size in arbitrary units - - - 4.958 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.sar_width: 1 - - - 4.958 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: sar_height: vui parameters: sample aspect ratio: vertical size in arbitrary units - - - 4.958 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.sar_height: 1 - - - 4.96 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: video_format: vui parameters: 1=PAL, 2=NTSC - - - 4.96 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.video_format: 2 - - - 4.96 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: video_full_range: vui parameters: (currently) not used - - - 4.96 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.video_full_range: 0 - - - 4.962 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: num_units_in_tick: vui parameters: timing info use together with time_scale - - - 4.962 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.num_units_in_tick: 900900 - - - 4.962 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: time_scale: vui parameters: timing info use together with num_units_in_tick (fps = time_scale/num_units_in_tick) - - - 4.962 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.time_scale: 27000000 - - - 4.962 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: vbv_buffer_fullness: advanced settings: initial vbv-fullness - - - 4.963 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.vbv_buffer_fullness: 10 - - - 4.963 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: vbv_buffer_fullness_trg: advanced settings: final vbv-fullness - - - 4.963 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.vbv_buffer_fullness_trg: 100 - - - 4.963 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: vbv_buffer_units: advanced settings: units of vbv-fullness and buffer size - - - 4.963 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.vbv_buffer_units: 0 - - - 4.963 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: cpb_removal_delay: advanced settings: CPB removal delay for the first picture (needed for segment merging) - - - 4.963 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.cpb_removal_delay: 0 - - - 4.964 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: bit_rate_scale: external setting of bit_rate_scale (avoids recalculation of bitrate) - - - 4.982 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.bit_rate_scale: 0 - - - 4.982 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: cpb_size_scale: external setting of cpb_size_scale (avoids recalculation of bitrate) - - - 4.982 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.cpb_size_scale: 2 - - - 4.982 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[4]: max_frame_size: max frames size for I, P, Bref, B frames - - - 4.982 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.max_frame_size: 0,0,0,0 - - - 4.983 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: hrd_maintain: 0=hrd model disabled, 1=hrd model enabled - - - 4.984 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.hrd_maintain: 1 - - - 4.984 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[4]: min_frame_size: min frames size for I, P, Bref, B frames - - - 4.984 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.min_frame_size: 0,0,0,0 - - - 4.984 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: hrd_low_delay: 0=low delay hrd disabled, 1=low delay hrd enabled - - - 4.984 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.hrd_low_delay: 0 - - - 4.984 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: smooth_factor: Quantizer curve compression smooth factor, 0 = disabled - - - 4.984 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.smooth_factor: 0 - - - 4.985 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: use_deblocking_filter: in-loop filter: - - - 4.985 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.use_deblocking_filter: 1 - - - 4.985 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: deblocking_alphaC0_offset: in-loop filter: - - - 4.985 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.deblocking_alphaC0_offset: -1 - - - 4.985 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: deblocking_beta_offset: in-loop filter: - - - 4.985 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.deblocking_beta_offset: -1 - - - 4.985 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: adaptive_deblocking: in-loop filter: adaptive deblocking filter - - - 4.986 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.adaptive_deblocking: 0 - - - 4.986 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: video_type: type issues: one of above defines - - - 4.986 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.video_type: 0 - - - 4.986 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: video_pulldown_flag: type issues: one of above flags - - - 4.986 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.video_pulldown_flag: 0 - - - 4.986 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: overscan_appropriate_flag: additional vui parameters: controls overscan_appropriate_flag of VUI - - - 4.987 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.overscan_appropriate_flag: 0 - - - 4.987 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: stream_type: file/stream issues: 0=H264_STREAM_TYPE_I, 1=H264_STREAM_TYPE_I_SEI, 3=H264_STREAM_TYPE_II, 4=H264_STREAM_TYPE_II_NO_SEI - - - 4.987 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.stream_type: 2 - - - 4.987 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: frame_mbs_mode: file/stream issues: 0=H264_FRAME_MBS_ON, 1=H264_FRAME_MBS_OFF - - - 4.987 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.frame_mbs_mode: 0 - - - 4.987 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: bit_depth_luma: bit_depth_chroma - - - 4.987 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.bit_depth_luma: 8 - - - 4.988 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: bit_depth_chroma: bit_depth_chroma - - - 4.988 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.bit_depth_chroma: 8 - - - 4.988 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: chroma_format: 1=H264_CHROMA_400, 2=H264_CHROMA_420 or 3=H264_CHROMA_422, 4=H264_CHROMA_444 - - - 4.988 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.chroma_format: 2 - - - 4.988 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: vui_presentation: configuration of VUI header: 0 - old school / auto mode, 1 - customized configuration, depending on following flags/bits, 0x002 - aspect_ratio_info_present_flag, 0x004 - overscan_info_present_flag (not supported), 0x008 - video_signal_type_present_flag, 0x010 - colour_description_present_flag, 0x020 - chroma_loc_info_present_flag (not supported), 0x040 - timing_info_present_flag, 0x080 - nal_hrd_parameters_present_flag, 0x100 - vcl_hrd_parameters_present_flag, 0x200 - pic_struct_present_flag, 0x400 - bitstream_restriction_flag - - - 4.988 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.vui_presentation: 0 - - - 4.988 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: write_au_delimiters: write access unit delimiters - - - 4.989 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.write_au_delimiters: 1 - - - 4.989 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: write_seq_end_code: write seq end code - - - 4.989 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.write_seq_end_code: 1 - - - 4.989 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: write_timestamps: write picture timecode in PT SEI - - - 4.989 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.write_timestamps: 1 - - - 4.989 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: timestamp_offset: frame offset (in #frames) for timestamps (default = 0) - - - 4.989 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.timestamp_offset: 0 - - - 4.99 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: drop_frame_timecode: use NTSC drop frame timecode notation for 29.97 and 59.94 target frame rates - - - 4.99 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.drop_frame_timecode: 1 - - - 4.99 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: write_single_sei_per_nalu: writes single sei message per nal unit - - - 4.99 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.write_single_sei_per_nalu: 0 - - - 4.99 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: write_seq_par_set: behaviour of writing sequence parameter set (default = 0): 0 - old school (SPS once per IDR), 1 - SPS once per I-frame - - - 4.99 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.write_seq_par_set: 0 - - - 4.991 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: write_pic_par_set: behaviour of writing picture parameter set (default = 0): 0 - old school (PPS once per IDR), 1 - PPS once per I picture, 2 - PPS once per picture - - - 4.991 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.write_pic_par_set: 0 - - - 4.991 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: log2_max_poc: allows to specify custom log2_max_pic_order_cnt_lsb_minus4 value: valid range is 4..16, default - 8 - - - 4.991 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.log2_max_poc: 8 - - - 4.991 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: log2_max_frame_num: allows to specify custom log2_max_frame_num_minus4 value: valid range is 4..16, default - 8 - - - 4.992 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.log2_max_frame_num: 8 - - - 4.992 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: pic_order_cnt_type: allows to specify custom pic_order_cnt_type value: valid values are 0 (default) and 2 - - - 4.992 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.pic_order_cnt_type: 0 - - - 4.992 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: pic_order_present_flag: controls pic_order_present_flag value in PPS (e.g. for SBTVD-T) - - - 4.992 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.pic_order_present_flag: 0 - - - 4.992 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: fixed_frame_rate: controls fixed_frame_rate_flag in VUI - - - 4.993 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.fixed_frame_rate: 1 - - - 4.993 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: frame_based_timing: controls time_scale / num_units_in_tick ration in VUI (field or frame rate) - - - 4.993 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.frame_based_timing: 0 - - - 4.993 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: vcsd_mode: scene detection: visual content scene detection, 0: OFF, 1: IDR (see vcsd_mode_flags) - - - 4.993 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.vcsd_mode: 0 - - - 4.993 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: vcsd_sensibility: describes sensibility of scene detector (0: high, 100: 0) - - - 4.993 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.vcsd_sensibility: 50 - - - 4.994 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: slice_mode: advanced settings: = 1, use multiple slices per picture - - - 4.994 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.slice_mode: 1 - - - 4.994 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: slice_arg: advanced settings: number of slices per picture - - - 4.994 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.slice_arg: 1 - - - 4.994 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: b_slice_reference: advanced settings: use b slices as reference too (b -> B) - - - 4.994 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.b_slice_reference: 0 - - - 4.995 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: b_slice_pyramid: advanced settings: pyramidal gop structure (...bBb...) - - - 4.995 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.b_slice_pyramid: 0 - - - 4.995 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: cb_offset: advanced settings: chroma quality offset (-X -> increase quality, +X -> decrease quality) - - - 4.995 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.cb_offset: 1 - - - 4.995 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: cr_offset: advanced settings: chroma quality offset (-X -> increase quality, +X -> decrease quality) - - - 4.995 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.cr_offset: 1 - - - 4.995 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: me_subpel_mode: advanced settings: 0=H264_FULL_PEL, 1=H264_HALF_PEL, 2=H264_QUARTER_PEL - - - 4.996 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.me_subpel_mode: 2 - - - 4.996 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: me_weighted_p_mode: advanced settings: whether to use explicit WP for P-frames or not - - - 4.997 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.me_weighted_p_mode: 0 - - - 4.997 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: me_weighted_b_mode: advanced settings: (currently) not used - - - 4.997 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.me_weighted_b_mode: 0 - - - 4.997 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: enable_fast_intra_decisions: advanced settings: enables fast intra decisions - - - 4.998 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.enable_fast_intra_decisions: 1 - - - 4.998 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: enable_fast_inter_decisions: advanced settings: enables fast inter decisions - - - 4.998 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.enable_fast_inter_decisions: 1 - - - 4.998 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: pic_ar_x: advanced settings: picture aspect ratio: horizontal size - - - 4.998 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.pic_ar_x: -1 - - - 4.998 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: pic_ar_y: advanced settings: picture aspect ratio: vertical size - - - 4.999 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.pic_ar_y: -1 - - - 4.999 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: calc_quality: advanced settings: calculate PSNR or not - - - 4.999 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.calc_quality: 0 - - - 4.999 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: cpu_opt: advanced settings: cpu optimization - - - 4.999 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.cpu_opt: 0 - - - 4.999 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: num_threads: advanced settings: number of threads - - - 4.999 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.num_threads: 0 - - - 4.999 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: live_mode: advanced settings: online or offline mode (not yet implemented) - - - 5.0 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.live_mode: 0 - - - 5.0 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: buffering: advanced settings: maximum number of seconds to buffer - - - 5.0 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.buffering: 0 - - - 5.0 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: min_quant: advanced settings: minimum quantization parameter - - - 5.0 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.min_quant: 0 - - - 5.0 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: max_quant: advanced settings: maximum quantization parameter - - - 5.0 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.max_quant: 51 - - - 5.001 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: max_slice_size: advanced settings: maximum slice size in bits, set to 0 if you do not need it - - - 5.001 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.max_slice_size: 0 - - - 5.001 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: encoding_buffering: advanced settings: maximum number of seconds to buffer encoding queue - - - 5.001 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.encoding_buffering: 0 - - - 5.001 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: low_delay: advanced settings: low delay mode (not yet implemented) - - - 5.001 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.low_delay: 0 - - - 5.001 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: air_mode: advanced settings: adaptive intra refresh mode - - - 5.002 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.air_mode: 0 - - - 5.002 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: detach_thread: advanced settings: run core in a new thread or not - - - 5.002 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.detach_thread: 1 - - - 5.002 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: constrained_intra_pred: advanced settings: constrained intra prediction for improving error resilience - - - 5.002 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.constrained_intra_pred: 0 - - - 5.002 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: air_split_frequency: advanced settings: frequency of intra lines for adaptive air mode split - - - 5.002 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.air_split_frequency: 0 - - - 5.002 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: air_qp_offset: advanced settings: qp offset for adaptive intra mode lines - - - 5.003 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.air_qp_offset: 0 - - - 5.003 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: min_idr_interval: advanced gop settings: min gop length - - - 5.003 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.min_idr_interval: 0 - - - 5.003 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: adaptive_b_frames: advanced gop settings: use adaptive B-frames placement or not - - - 5.003 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.adaptive_b_frames: 0 - - - 5.003 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: idr_frequency: advanced gop settings: 0 means only first frame is IDR, 1 means every I-frame is IDR, etc - - - 5.003 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.idr_frequency: 1 - - - 5.004 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: field_order: advanced gop settings: 0=TFF, 1=BFF - - - 5.004 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.field_order: 0 - - - 5.004 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: fixed_i_position: advanced gop settings: constant I frame position - - - 5.004 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.fixed_i_position: 0 - - - 5.004 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: isolated_gops: advanced gop settings: allows to limit referencing to frames from the previous GOP, may be useful when idr_frequency != 1 - - - 5.004 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.isolated_gops: 0 - - - 5.005 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: hierar_p_frames: advanced gop settings: GOP structure with hierarchically coded P frames (for temporal scalability with out using B frames) (not yet supported in enc_avc/trunk) - - - 5.005 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.hierar_p_frames: 0 - - - 5.005 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: fast_multi_ref_me: advanced me settings: enables fast decisions for multi-ref ME - - - 5.005 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.fast_multi_ref_me: 1 - - - 5.005 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: fast_sub_block_me: advanced me settings: enables fast decisions for sub-block ME - - - 5.005 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.fast_sub_block_me: 1 - - - 5.006 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: allow_out_of_pic_mvs: advanced me settings: enables mvs out of picture boundaries - - - 5.006 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.allow_out_of_pic_mvs: 1 - - - 5.006 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: constrained_ref_list: advanced me settings: use constrained reference picture list - - - 5.006 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.constrained_ref_list: 0 - - - 5.006 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: enable_intra_big: advanced intra settings: allows to use 16x16 intra mode in intra slices - - - 5.006 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.enable_intra_big: 1 - - - 5.006 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: enable_intra_8x8: advanced intra settings: same for 8x8 - - - 5.007 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.enable_intra_8x8: 0 - - - 5.007 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: enable_intra_4x4: advanced intra settings: same for 4x4 - - - 5.007 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.enable_intra_4x4: 1 - - - 5.007 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: enable_intra_pcm: advanced intra settings: same for PCM - - - 5.007 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.enable_intra_pcm: 0 - - - 5.007 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: enable_inter_big: advanced intra settings: allows to use 16x16 intra mode in inter slices - - - 5.007 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.enable_inter_big: 1 - - - 5.008 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: enable_inter_8x8: advanced intra settings: same for 8x8 - - - 5.008 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.enable_inter_8x8: 0 - - - 5.008 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: enable_inter_4x4: advanced intra settings: same for 4x4 - - - 5.008 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.enable_inter_4x4: 1 - - - 5.008 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: enable_inter_pcm: advanced intra settings: same for PCM - - - 5.008 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.enable_inter_pcm: 0 - - - 5.008 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: fast_rd_optimization: advanced rdo settings: allows fast RDO - - - 5.009 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.fast_rd_optimization: 1 - - - 5.009 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: quant_mode: advanced rdo settings: quantization optimization mode - - - 5.009 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.quant_mode: 2 - - - 5.009 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: grain_mode: advanced rdo settings: granular noise optimization mode, not used any more - - - 5.009 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.grain_mode: 0 - - - 5.009 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: grain_opt_strength: advanced rdo settings: scalable film grain optimization [0..100], use 0 to turn it off - - - 5.009 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.grain_opt_strength: 0 - - - 5.01 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[8]: adaptive_quant_strength: advanced rdo settings: adaptive quantization strength [-100..100] or every mode (from H264_AQUANT_MODE_BRIGHTNESS to COMPLEXITY), last 5 strengths are not used at the moment - - - 5.01 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.adaptive_quant_strength: 0,0,0,0,0,0,0,0 - - - 5.01 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: denoise_strength_y: Psycho-visual enhancement: denoise strength for luma [0..100] - - - 5.01 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.denoise_strength_y: 0 - - - 5.01 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: denoise_strength_c: Psycho-visual enhancement: denoise strength for chroma [0..100] - - - 5.01 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.denoise_strength_c: 0 - - - 5.01 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: black_norm_level: Psycho-visual enhancement: black normalization level, any luma less than or equal to black_norm_level will be set to 16 - - - 5.01 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.black_norm_level: 0 - - - 5.011 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: pulse_reduction: Psycho-visual enhancement: key frame pulsing reduction - - - 5.011 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.pulse_reduction: 0 - - - 5.011 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: aux_format_idc: alpha plane: aux_format_idc - - - 5.011 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.aux_format_idc: -1 - - - 5.011 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: bit_depth_aux: alpha plane: bit_depth_aux - - - 5.011 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.bit_depth_aux: 8 - - - 5.011 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: alpha_incr_flag: alpha plane: alpha_incr_flag - - - 5.012 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.alpha_incr_flag: 0 - - - 5.012 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: alpha_opaque_value: alpha plane: alpha_opaque_value - - - 5.012 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.alpha_opaque_value: 0 - - - 5.012 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: alpha_transparent_value: alpha plane: alpha_transparent_value - - - 5.012 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.alpha_transparent_value: 0 - - - 5.012 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long: seq_scaling_matrix_present_flag: seq_scaling_list_present_flag equal[i] to 1 specifies that the syntax structure - - - 5.013 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.seq_scaling_matrix_present_flag: 0 - - - 5.013 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[8]: seq_scaling_list_present_flag: for scaling list i is present in the sequence parameter set (and not in the picture parameter set) - - - 5.013 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.seq_scaling_list_present_flag: 0,0,0,0,0,0,0,0 - - - 5.013 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[16]: intra_y_4x4_scaling_list: scaling lists: intra_y_4x4_scaling_list - - - 5.013 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.intra_y_4x4_scaling_list: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - - - 5.014 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[16]: intra_cb_4x4_scaling_list: scaling lists: intra_cb_4x4_scaling_list - - - 5.014 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.intra_cb_4x4_scaling_list: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - - - 5.014 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[16]: intra_cr_4x4_scaling_list: scaling lists: intra_cr_4x4_scaling_list - - - 5.014 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.intra_cr_4x4_scaling_list: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - - - 5.014 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[16]: inter_y_4x4_scaling_list: scaling lists: inter_y_4x4_scaling_list - - - 5.014 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.inter_y_4x4_scaling_list: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - - - 5.014 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[16]: inter_cb_4x4_scaling_list: scaling lists: inter_cb_4x4_scaling_list - - - 5.015 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.inter_cb_4x4_scaling_list: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - - - 5.015 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[16]: inter_cr_4x4_scaling_list: scaling lists: inter_cr_4x4_scaling_list - - - 5.015 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.inter_cr_4x4_scaling_list: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - - - 5.015 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[64]: intra_y_8x8_scaling_list: scaling lists: intra_y_8x8_scaling_list - - - 5.015 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.intra_y_8x8_scaling_list: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - - - 5.015 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - # long[64]: inter_y_8x8_scaling_list: scaling lists: inter_y_8x8_scaling_list - - - 5.015 - - - - - - - - - - - - - - - - - - - - - - - - -
2014-05-05 13:59:40 PDT comment server INFO 200 - mainconcept.inter_y_8x8_scaling_list: 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 - - - 5.016 - - - - - - - - - - - - - - - - - - - - - - - - -
I tried changing the value, but if I add that to Encode Parameters with a non-default value it still comes up in the log as the default value of 2.
<Encode>
[...]
<Parameters>
<Parameter>
<Name>mainconcept.bit_rate_mode</Name>
<Value>1</Value>
<Type>Long</Type>
</Parameter>
</Parameters>
</Encode>
Changing the mainconcept.bit_rate_mode to 1 does seem to fix the problem so far. For anyone else with this issue: The parameter configuration goes in Encode/Video/Parameters, not Encode/Parameters.