Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

H264CodecSettings

import type { H264CodecSettings } from "https://googleapis.deno.dev/v1/transcoder:v1.ts";

H264 codec settings.

interface H264CodecSettings {
allowOpenGop?: boolean;
aqStrength?: number;
bFrameCount?: number;
bitrateBps?: number;
bPyramid?: boolean;
crfLevel?: number;
enableTwoPass?: boolean;
entropyCoder?: string;
frameRate?: number;
frameRateConversionStrategy?: "FRAME_RATE_CONVERSION_STRATEGY_UNSPECIFIED" | "DOWNSAMPLE" | "DROP_DUPLICATE";
gopDuration?: number;
gopFrameCount?: number;
heightPixels?: number;
pixelFormat?: string;
preset?: string;
profile?: string;
rateControlMode?: string;
tune?: string;
vbvFullnessBits?: number;
vbvSizeBits?: number;
widthPixels?: number;
}

§Properties

§
allowOpenGop?: boolean
[src]

Specifies whether an open Group of Pictures (GOP) structure should be allowed or not. The default is false.

§
aqStrength?: number
[src]

Specify the intensity of the adaptive quantizer (AQ). Must be between 0 and 1, where 0 disables the quantizer and 1 maximizes the quantizer. A higher value equals a lower bitrate but smoother image. The default is 0.

§
bFrameCount?: number
[src]

The number of consecutive B-frames. Must be greater than or equal to zero. Must be less than H264CodecSettings.gop_frame_count if set. The default is 0.

§
bitrateBps?: number
[src]

Required. The video bitrate in bits per second. The minimum value is 1,000. The maximum value is 800,000,000.

§
bPyramid?: boolean
[src]

Allow B-pyramid for reference frame selection. This may not be supported on all decoders. The default is false.

§
crfLevel?: number
[src]

Target CRF level. Must be between 10 and 36, where 10 is the highest quality and 36 is the most efficient compression. The default is 21.

§
enableTwoPass?: boolean
[src]

Use two-pass encoding strategy to achieve better video quality. H264CodecSettings.rate_control_mode must be vbr. The default is false.

§
entropyCoder?: string
[src]

The entropy coder to use. The default is cabac. Supported entropy coders: - cavlc - cabac

§
frameRate?: number
[src]

Required. The target video frame rate in frames per second (FPS). Must be less than or equal to 120.

§
frameRateConversionStrategy?: "FRAME_RATE_CONVERSION_STRATEGY_UNSPECIFIED" | "DOWNSAMPLE" | "DROP_DUPLICATE"
[src]

Optional. Frame rate conversion strategy for desired frame rate. The default is DOWNSAMPLE.

§
gopDuration?: number
[src]

Select the GOP size based on the specified duration. The default is 3s. Note that gopDuration must be less than or equal to segmentDuration, and segmentDuration must be divisible by gopDuration.

§
gopFrameCount?: number
[src]

Select the GOP size based on the specified frame count. Must be greater than zero.

§
heightPixels?: number
[src]

The height of the video in pixels. Must be an even integer. When not specified, the height is adjusted to match the specified width and input aspect ratio. If both are omitted, the input height is used. For portrait videos that contain horizontal ASR and rotation metadata, provide the height, in pixels, per the horizontal ASR. The API calculates the width per the horizontal ASR. The API detects any rotation metadata and swaps the requested height and width for the output.

§

Optional. HLG color format setting for H264.

§
pixelFormat?: string
[src]

Pixel format to use. The default is yuv420p. Supported pixel formats: - yuv420p pixel format - yuv422p pixel format - yuv444p pixel format - yuv420p10 10-bit HDR pixel format - yuv422p10 10-bit HDR pixel format - yuv444p10 10-bit HDR pixel format - yuv420p12 12-bit HDR pixel format - yuv422p12 12-bit HDR pixel format - yuv444p12 12-bit HDR pixel format

§
preset?: string
[src]

Enforces the specified codec preset. The default is veryfast. The available options are FFmpeg-compatible. Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

§
profile?: string
[src]

Enforces the specified codec profile. The following profiles are supported: * baseline * main * high (default) The available options are FFmpeg-compatible. Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

§
rateControlMode?: string
[src]

Specify the mode. The default is vbr. Supported rate control modes: - vbr - variable bitrate - crf - constant rate factor

§

Optional. SDR color format setting for H264.

§
tune?: string
[src]

Enforces the specified codec tune. The available options are FFmpeg-compatible. Note that certain values for this field may cause the transcoder to override other fields you set in the H264CodecSettings message.

§
vbvFullnessBits?: number
[src]

Initial fullness of the Video Buffering Verifier (VBV) buffer in bits. Must be greater than zero. The default is equal to 90% of H264CodecSettings.vbv_size_bits.

§
vbvSizeBits?: number
[src]

Size of the Video Buffering Verifier (VBV) buffer in bits. Must be greater than zero. The default is equal to H264CodecSettings.bitrate_bps.

§
widthPixels?: number
[src]

The width of the video in pixels. Must be an even integer. When not specified, the width is adjusted to match the specified height and input aspect ratio. If both are omitted, the input width is used. For portrait videos that contain horizontal ASR and rotation metadata, provide the width, in pixels, per the horizontal ASR. The API calculates the height per the horizontal ASR. The API detects any rotation metadata and swaps the requested height and width for the output.