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 absoluteIndex

The index of the audio stream.

* @param relativeIndex

The index of the audio stream relative to other audio streams.

* @param language

The language of the audio stream.

* @param title

The title of the audio stream.

* @param channels

The 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 * * @return

The language of the audio stream.

*/ public String getLanguage() { return this.language; } /** * Gets the number of channels for the audio stream * * @return

The number of channels for the audio stream.

*/ public int getChannels() { return this.channels; } /** * Gets the title of the audio stream * * @return

The title of the audio stream.

*/ public String getTitle() { return this.title; } }