com.byteplus.service.vod.model.business.VodVideoStreamMetaOrBuilder Maven / Gradle / Ivy
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: byteplus/vod/business/vod_common.proto
package com.byteplus.service.vod.model.business;
public interface VodVideoStreamMetaOrBuilder extends
// @@protoc_insertion_point(interface_extends:Byteplus.Vod.Models.Business.VodVideoStreamMeta)
com.google.protobuf.MessageOrBuilder {
/**
*
*视频编码格式
*
*
* string Codec = 1;
* @return The codec.
*/
java.lang.String getCodec();
/**
*
*视频编码格式
*
*
* string Codec = 1;
* @return The bytes for codec.
*/
com.google.protobuf.ByteString
getCodecBytes();
/**
*
*视频高度
*
*
* int32 Height = 2;
* @return The height.
*/
int getHeight();
/**
*
*视频宽度
*
*
* int32 Width = 3;
* @return The width.
*/
int getWidth();
/**
*
*视频时长
*
*
* float Duration = 4;
* @return The duration.
*/
float getDuration();
/**
*
*视频清晰度
*
*
* string Definition = 5;
* @return The definition.
*/
java.lang.String getDefinition();
/**
*
*视频清晰度
*
*
* string Definition = 5;
* @return The bytes for definition.
*/
com.google.protobuf.ByteString
getDefinitionBytes();
/**
*
*视频码率(Kbps)
*
*
* int32 Bitrate = 6;
* @return The bitrate.
*/
int getBitrate();
/**
*
*帧率
*
*
* float Fps = 7;
* @return The fps.
*/
float getFps();
}