All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.cloud.video.transcoder.v1.MuxStreamOrBuilder Maven / Gradle / Ivy

There is a newer version: 1.48.0
Show newest version
/*
 * Copyright 2024 Google LLC
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
// Generated by the protocol buffer compiler.  DO NOT EDIT!
// source: google/cloud/video/transcoder/v1/resources.proto

// Protobuf Java Version: 3.25.5
package com.google.cloud.video.transcoder.v1;

public interface MuxStreamOrBuilder
    extends
    // @@protoc_insertion_point(interface_extends:google.cloud.video.transcoder.v1.MuxStream)
    com.google.protobuf.MessageOrBuilder {

  /**
   *
   *
   * 
   * A unique key for this multiplexed stream. HLS media manifests will be
   * named `MuxStream.key` with the `.m3u8` extension suffix.
   * 
* * string key = 1; * * @return The key. */ java.lang.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; * * @return The bytes for key. */ com.google.protobuf.ByteString getKeyBytes(); /** * * *
   * 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; * * @return The fileName. */ java.lang.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; * * @return The bytes for fileName. */ com.google.protobuf.ByteString getFileNameBytes(); /** * * *
   * The container format. The default is `mp4`
   *
   * Supported container formats:
   *
   * - `ts`
   * - `fmp4`- the corresponding file extension is `.m4s`
   * - `mp4`
   * - `vtt`
   *
   * See also:
   * [Supported input and output
   * formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats)
   * 
* * string container = 3; * * @return The container. */ java.lang.String getContainer(); /** * * *
   * The container format. The default is `mp4`
   *
   * Supported container formats:
   *
   * - `ts`
   * - `fmp4`- the corresponding file extension is `.m4s`
   * - `mp4`
   * - `vtt`
   *
   * See also:
   * [Supported input and output
   * formats](https://cloud.google.com/transcoder/docs/concepts/supported-input-and-output-formats)
   * 
* * string container = 3; * * @return The bytes for container. */ com.google.protobuf.ByteString getContainerBytes(); /** * * *
   * List of `ElementaryStream.key`s multiplexed in this stream.
   * 
* * repeated string elementary_streams = 4; * * @return A list containing the elementaryStreams. */ java.util.List getElementaryStreamsList(); /** * * *
   * List of `ElementaryStream.key`s multiplexed in this stream.
   * 
* * repeated string elementary_streams = 4; * * @return The count of elementaryStreams. */ int getElementaryStreamsCount(); /** * * *
   * List of `ElementaryStream.key`s multiplexed in this stream.
   * 
* * repeated string elementary_streams = 4; * * @param index The index of the element to return. * @return The elementaryStreams at the given index. */ java.lang.String getElementaryStreams(int index); /** * * *
   * List of `ElementaryStream.key`s multiplexed in this stream.
   * 
* * repeated string elementary_streams = 4; * * @param index The index of the value to return. * @return The bytes of the elementaryStreams at the given index. */ com.google.protobuf.ByteString getElementaryStreamsBytes(int index); /** * * *
   * Segment settings for `ts`, `fmp4` and `vtt`.
   * 
* * .google.cloud.video.transcoder.v1.SegmentSettings segment_settings = 5; * * @return Whether the segmentSettings field is set. */ boolean hasSegmentSettings(); /** * * *
   * Segment settings for `ts`, `fmp4` and `vtt`.
   * 
* * .google.cloud.video.transcoder.v1.SegmentSettings segment_settings = 5; * * @return The segmentSettings. */ com.google.cloud.video.transcoder.v1.SegmentSettings getSegmentSettings(); /** * * *
   * Segment settings for `ts`, `fmp4` and `vtt`.
   * 
* * .google.cloud.video.transcoder.v1.SegmentSettings segment_settings = 5; */ com.google.cloud.video.transcoder.v1.SegmentSettingsOrBuilder getSegmentSettingsOrBuilder(); /** * * *
   * Identifier of the encryption configuration to use. If omitted, output will
   * be unencrypted.
   * 
* * string encryption_id = 7; * * @return The encryptionId. */ java.lang.String getEncryptionId(); /** * * *
   * Identifier of the encryption configuration to use. If omitted, output will
   * be unencrypted.
   * 
* * string encryption_id = 7; * * @return The bytes for encryptionId. */ com.google.protobuf.ByteString getEncryptionIdBytes(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy