com.volcengine.model.live.request.UpdateTranscodePresetRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.live.request;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
@Data
public class UpdateTranscodePresetRequest {
@JSONField(name = "Preset")
String Preset;
@JSONField(name = "Vhost")
String Vhost;
@JSONField(name = "App")
String App;
@JSONField(name = "Status")
Long Status;
@JSONField(name = "SuffixName")
String SuffixName;
@JSONField(name = "VideoBitrate")
Long VideoBitrate;
@JSONField(name = "Vcodec")
String Vcodec;
@JSONField(name = "AudioBitrate")
Long AudioBitrate;
@JSONField(name = "Acodec")
String Acodec;
@JSONField(name = "FPS")
Long FPS;
@JSONField(name = "GOP")
Long GOP;
@JSONField(name = "Width")
Long Width;
@JSONField(name = "Height")
Long Height;
@JSONField(name = "AutoTrans")
Long AutoTrans;
@JSONField(name = "As")
String As;
@JSONField(name = "ShortSide")
Long ShortSide;
@JSONField(name = "LongSide")
Long LongSide;
@JSONField(name = "PresetType")
Integer PresetType;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy