package net.knarcraft.ffmpegconverter.streams; /** * This class represents an ffmpeg audio stream */ public class AudioStream extends StreamObject { private final String language; private final int channels; private final String title; /** * Instantiates a new audio stream * * @param codecName
The codec of the audio stream.
* @param absoluteIndexThe index of the audio stream.
* @param relativeIndexThe index of the audio stream relative to other audio streams.
* @param languageThe language of the audio stream.
* @param titleThe title of the audio stream.
* @param channelsThe number of channels for the audio stream.
*/ public AudioStream(String codecName, int absoluteIndex, int relativeIndex, String language, String title, int channels) { this.codecType = "audio"; this.codecName = codecName; this.absoluteIndex = absoluteIndex; this.language = language; this.title = title; this.relativeIndex = relativeIndex; this.channels = channels; } /** * Gets the language of the audio stream * * @returnThe language of the audio stream.
*/ public String getLanguage() { return this.language; } /** * Gets the number of channels for the audio stream * * @returnThe number of channels for the audio stream.
*/ public int getChannels() { return this.channels; } /** * Gets the title of the audio stream * * @returnThe title of the audio stream.
*/ public String getTitle() { return this.title; } }