Method: Aws::MediaConvert::Types::M2tsSettings#min_ebp_interval
- Defined in:
- lib/aws-sdk-mediaconvert/types.rb
#min_ebp_interval ⇒ Integer
When set, enforces that Encoder Boundary Points do not come within the specified time interval of each other by looking ahead at input video. If another EBP is going to come in within the specified time interval, the current EBP is not emitted, and the segment is “stretched” to the next marker. The lookahead value does not add latency to the system. The Live Event must be configured elsewhere to create sufficient latency to make the lookahead accurate.
10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 |
# File 'lib/aws-sdk-mediaconvert/types.rb', line 10282 class M2tsSettings < Struct.new( :audio_buffer_model, :audio_duration, :audio_frames_per_pes, :audio_pids, :audio_pts_offset_delta, :bitrate, :buffer_model, :data_pts_control, :dvb_nit_settings, :dvb_sdt_settings, :dvb_sub_pids, :dvb_tdt_settings, :dvb_teletext_pid, :ebp_audio_interval, :ebp_placement, :es_rate_in_pes, :force_ts_video_ebp_order, :fragment_time, :klv_metadata, :max_pcr_interval, :min_ebp_interval, :nielsen_id_3, :null_packet_bitrate, :pat_interval, :pcr_control, :pcr_pid, :pmt_interval, :pmt_pid, :prevent_buffer_underflow, :private_metadata_pid, :program_number, :pts_offset, :pts_offset_mode, :rate_mode, :scte_35_esam, :scte_35_pid, :scte_35_source, :segmentation_markers, :segmentation_style, :segmentation_time, :timed_metadata_pid, :transport_stream_id, :video_pid) SENSITIVE = [] include Aws::Structure end |