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

io.antmedia.cluster.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.11.3
Show newest version
package io.antmedia.cluster;

import io.antmedia.webrtc.VideoCodec;

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();
	
	/**
	 * @return the video codec 
	 */
	public VideoCodec getVideoCodec();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy