added GIF support
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / converters / Convert.java
1 /*
2  * Meviz - Various tools collection to work with multimedia.
3  * Copyright (C) 2012 -- 2017-2017, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  *
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public License
7  * as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.meviz.encoder.converters;
11
12 import eu.svjatoslav.meviz.encoder.EncodingOptions;
13
14 import java.io.File;
15 import java.util.List;
16
17 public class Convert extends AbstractConverter {
18
19     @Override
20     public String getCommand(final File inputFile, final File targetFile,
21                              final EncodingOptions options, String targetFormat) {
22         return "convert \"" + inputFile.getAbsolutePath() + "\" \""
23                 + targetFile.getAbsolutePath() + "\"";
24     }
25
26     @Override
27     public List<String> getSourceFileExtensions() {
28         return getSupportedFormats();
29     }
30
31     private List<String> getSupportedFormats() {
32         return toList("tif", "tiff", "png", "jpg", "jpeg", "bmp", "gif");
33     }
34
35     @Override
36     public List<String> getTargetFileExtensions() {
37         return getSupportedFormats();
38     }
39
40     @Override
41     public boolean isTerminalMandatory() {
42         return false;
43     }
44
45 }