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

io.antmedia.webrtc.api.IStreamInfo Maven / Gradle / Ivy

Go to download

Ant Media Server supports RTMP, RTSP, MP4, HLS, WebRTC, Adaptive Streaming, etc.

There is a newer version: 2.12.0
Show newest version
package io.antmedia.webrtc.api;

public interface IStreamInfo {

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

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


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


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

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy