List<String> tags = videoEntry.getMediaGroup().getKeywords().getKeywords();
String sortedTags = util.sortedJoin(tags, ",");
long viewCount = -1;
YtStatistics stats = videoEntry.getStatistics();
if (stats != null) {
viewCount = stats.getViewCount();
}
VideoSubmission submission = new VideoSubmission(Long.parseLong(assignmentId));
submission.setArticleUrl(articleUrl);