com.qiniu.model.qdora.Avinfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qsuits Show documentation
Show all versions of qsuits Show documentation
qiniu-suits is a efficient tools for qiniu api implemented by java8.
package com.qiniu.model.qdora;
public class Avinfo {
private Format format;
private AudioStream audioStream;
private VideoStream videoStream;
public AudioStream getAudioStream() {
return audioStream;
}
public void setAudioStream(AudioStream audioStream) {
this.audioStream = audioStream;
}
public VideoStream getVideoStream() {
return videoStream;
}
public void setVideoStream(VideoStream videoStream) {
this.videoStream = videoStream;
}
public Format getFormat() {
return format;
}
public void setFormat(Format format) {
this.format = format;
}
}