OSDN Git Service

af4e232c27e76864905c3a80328909cc87a9b3f3
[coroid/inqubus.git] / frontend / src / yukihane / saccubus / converter / profile / Profile.java
1 package yukihane.saccubus.converter.profile;
2
3 /**
4  *
5  * @author yuki
6  */
7 public interface Profile {
8
9     LoginInfo getLoginInfo();
10
11     Proxy getProxySetting();
12
13     InputFileSetting getVideoSetting();
14
15     InputFileSetting getCommentSetting();
16
17     InputFileSetting getTcommentSetting();
18
19     OutputFileSetting getOutputFileSetting();
20
21     CommentGetInfo getCommentGetInfo();
22
23     boolean needsConvert();
24
25     Ffmpeg getFfmpeg();
26
27     GeneralSetting getGeneralSetting();
28 }