OSDN Git Service

Convert再考
[coroid/inqubus.git] / frontend / src / saccubus / worker / profile / FfmpegProfile.java
1 package saccubus.worker.profile;
2
3 /**
4  *
5  * @author yuki
6  */
7 public interface FfmpegProfile {
8
9     String getExtOption();
10
11     String getInOption();
12
13     String getMainOption();
14
15     String getOutOption();
16
17     String getAvfilterOption();
18
19     boolean isResize();
20
21     int getResizeWidth();
22
23     int getResizeHeight();
24
25     boolean isAdjustRatio();
26
27     GeneralProfile getGeneralSetting();
28 }