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

com.qiniu.service.media.VideoTS Maven / Gradle / Ivy

There is a newer version: 8.4.8
Show newest version
package com.qiniu.service.media;

public class VideoTS {

    private String url;
    private float seconds;

    public VideoTS(String url, float seconds) {
        this.url = url;
        this.seconds = seconds;
    }

    public String getUrl() {
        return url;
    }

    public void setUrl(String url) {
        this.url = url;
    }

    public float getSeconds() {
        return seconds;
    }

    public void setSeconds(float seconds) {
        this.seconds = seconds;
    }

    public String toString() {
        return url + ": " + seconds + "sec";
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy