package net.knarcraft.ffmpegconverter.converter; import net.knarcraft.ffmpegconverter.streams.AudioStream; import net.knarcraft.ffmpegconverter.streams.StreamObject; import net.knarcraft.ffmpegconverter.streams.SubtitleStream; import net.knarcraft.ffmpegconverter.streams.VideoStream; import net.knarcraft.ffmpegconverter.utility.FFMpegHelper; import java.io.File; import java.io.IOException; import java.util.List; /** * A converter for converting video files */ public class VideoConverter extends AbstractConverter { /** * Instantiates a new video converter * * @param ffprobePath

Path/command to ffprobe.

* @param ffmpegPath

Path/command to ffmpeg.

* @param newExtension

The extension of the new file.

*/ public VideoConverter(String ffprobePath, String ffmpegPath, String newExtension) { super(newExtension); this.ffprobePath = ffprobePath; this.ffmpegPath = ffmpegPath; } @Override public String[] builderCommand(String executable, File file, List streams, String outFile) { List command = FFMpegHelper.getFFMpegGeneralFileCommand(executable, file.getName()); if (this.DEBUG) { FFMpegHelper.addDebugArguments(command, 50, 120); } //Get first streams from the file SubtitleStream subtitleStream = getFirstSubtitleStream(streams); VideoStream videoStream = getFirstVideoStream(streams); AudioStream audioStream = getFirstAudioSteam(streams); //Add streams to output addSubtitlesAndVideo(command, subtitleStream, videoStream, file); if (audioStream != null) { addAudioStreams(command, audioStream, true); } command.add(outFile); return command.toArray(new String[0]); } @Override public String[] getValidFormats() { return videoFormats; } @Override public void convert(File file) throws IOException { processFile(file.getParentFile(), file); } }