aestheticsScoreDetector = new AestheticsScoreDetector(MainActivity.this);
AEModelConfiguration aeModelConfiguration = new AEModelConfiguration();
aeModelConfiguration.getSummerizationConf().setSummerizationMaxLen(10);
aestheticsScoreDetector.setAEModelConfiguration(aeModelConfiguration);
Video[] videos = new Video[videoPaths.length];
for (String path: videoPaths) {
Video video = new Video();
video.setPath(path);
videos[position++] = video;
}
JSONObject jsonObject;
jsonObject = aestheticsScoreDetector.getVideoSummerization(videos, null);
AEVideoResult aeVideoResult = aestheticsScoreDetector.convertVideoSummaryResult(jsonObject);