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

com.iheartradio.m3u8.data.IStreamInfo Maven / Gradle / Ivy

There is a newer version: 0.2.6
Show newest version
package com.iheartradio.m3u8.data;

import java.util.List;

public interface IStreamInfo {
    public int getBandwidth();

    boolean hasAverageBandwidth();

    int getAverageBandwidth();

    boolean hasCodecs();

    List getCodecs();

    boolean hasResolution();

    Resolution getResolution();

    boolean hasFrameRate();

    float getFrameRate();

    boolean hasVideo();

    String getVideo();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy