public interface MuxStreamOrBuilder extends MessageOrBuilder
Implements
MessageOrBuilderMethods
getContainer()
public abstract String getContainer()
The container format. The default is "mp4"
Supported container formats:
- 'ts'
- 'fmp4'- the corresponding file extension is
".m4s"
- 'mp4'
- 'vtt'
string container = 3;
Type | Description |
String | The container. |
getContainerBytes()
public abstract ByteString getContainerBytes()
The container format. The default is "mp4"
Supported container formats:
- 'ts'
- 'fmp4'- the corresponding file extension is
".m4s"
- 'mp4'
- 'vtt'
string container = 3;
Type | Description |
ByteString | The bytes for container. |
getElementaryStreams(int index)
public abstract String getElementaryStreams(int index)
List of ElementaryStream.key
s multiplexed in this stream.
repeated string elementary_streams = 4;
Name | Description |
index | int The index of the element to return. |
Type | Description |
String | The elementaryStreams at the given index. |
getElementaryStreamsBytes(int index)
public abstract ByteString getElementaryStreamsBytes(int index)
List of ElementaryStream.key
s multiplexed in this stream.
repeated string elementary_streams = 4;
Name | Description |
index | int The index of the value to return. |
Type | Description |
ByteString | The bytes of the elementaryStreams at the given index. |
getElementaryStreamsCount()
public abstract int getElementaryStreamsCount()
List of ElementaryStream.key
s multiplexed in this stream.
repeated string elementary_streams = 4;
Type | Description |
int | The count of elementaryStreams. |
getElementaryStreamsList()
public abstract List<String> getElementaryStreamsList()
List of ElementaryStream.key
s multiplexed in this stream.
repeated string elementary_streams = 4;
Type | Description |
List<String> | A list containing the elementaryStreams. |
getEncryption()
public abstract Encryption getEncryption()
Encryption settings.
.google.cloud.video.transcoder.v1beta1.Encryption encryption = 6;
Type | Description |
Encryption | The encryption. |
getEncryptionOrBuilder()
public abstract EncryptionOrBuilder getEncryptionOrBuilder()
Encryption settings.
.google.cloud.video.transcoder.v1beta1.Encryption encryption = 6;
Type | Description |
EncryptionOrBuilder |
getFileName()
public abstract String getFileName()
The name of the generated file. The default is MuxStream.key
with the
extension suffix corresponding to the MuxStream.container
.
Individual segments also have an incremental 10-digit zero-padded suffix
starting from 0 before the extension, such as "mux_stream0000000123.ts"
.
string file_name = 2;
Type | Description |
String | The fileName. |
getFileNameBytes()
public abstract ByteString getFileNameBytes()
The name of the generated file. The default is MuxStream.key
with the
extension suffix corresponding to the MuxStream.container
.
Individual segments also have an incremental 10-digit zero-padded suffix
starting from 0 before the extension, such as "mux_stream0000000123.ts"
.
string file_name = 2;
Type | Description |
ByteString | The bytes for fileName. |
getKey()
public abstract String getKey()
A unique key for this multiplexed stream. HLS media manifests will be
named MuxStream.key
with the ".m3u8"
extension suffix.
string key = 1;
Type | Description |
String | The key. |
getKeyBytes()
public abstract ByteString getKeyBytes()
A unique key for this multiplexed stream. HLS media manifests will be
named MuxStream.key
with the ".m3u8"
extension suffix.
string key = 1;
Type | Description |
ByteString | The bytes for key. |
getSegmentSettings()
public abstract SegmentSettings getSegmentSettings()
Segment settings for "ts"
, "fmp4"
and "vtt"
.
.google.cloud.video.transcoder.v1beta1.SegmentSettings segment_settings = 5;
Type | Description |
SegmentSettings | The segmentSettings. |
getSegmentSettingsOrBuilder()
public abstract SegmentSettingsOrBuilder getSegmentSettingsOrBuilder()
Segment settings for "ts"
, "fmp4"
and "vtt"
.
.google.cloud.video.transcoder.v1beta1.SegmentSettings segment_settings = 5;
Type | Description |
SegmentSettingsOrBuilder |
hasEncryption()
public abstract boolean hasEncryption()
Encryption settings.
.google.cloud.video.transcoder.v1beta1.Encryption encryption = 6;
Type | Description |
boolean | Whether the encryption field is set. |
hasSegmentSettings()
public abstract boolean hasSegmentSettings()
Segment settings for "ts"
, "fmp4"
and "vtt"
.
.google.cloud.video.transcoder.v1beta1.SegmentSettings segment_settings = 5;
Type | Description |
boolean | Whether the segmentSettings field is set. |