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

io.antmedia.cluster.IStreamInfo Maven / Gradle / Ivy

There is a newer version: 2.3.3.1
Show newest version
package io.antmedia.cluster;

public interface IStreamInfo {

	/**
	 * Returns the height of the video
	 * @return
	 */
	public int getHeight();

	/**
	 * Returns the width of the video
	 * @return
	 */
	public int getWidth();


	/**
	 * Returns the video bitrate 
	 * @return bps
	 */
	public int getVideoBitrate();


	/**
	 * Returns the audio bitrate
	 * @return
	 */
	public int getAudioBitrate();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy