com.qiniu.rtc.model.MediaOutput Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qiniu-java-sdk Show documentation
Show all versions of qiniu-java-sdk Show documentation
Qiniu Cloud Storage SDK for Java
package com.qiniu.rtc.model;
import java.io.Serializable;
public class MediaOutput implements Serializable {
private static final long serialVersionUID = 5010528238721566857L;
/**
* 现仅支持 rtmp
*/
private String type;
/**
* rtmp地址, example: rtmp://qiniu.com/stream
*/
private String url;
public MediaOutput() {
}
public MediaOutput(String type, String url) {
this.type = type;
this.url = url;
}
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
@Override
public String toString() {
return "MediaOutput{"
+ "type='" + type + '\''
+ ", url='" + url + '\''
+ '}';
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy