// Write new meta data
mediaMeta.setDescription("Oh isn't this a lovely tune.");
mediaMeta.save();
mediaMeta.release();
// Re-read to confirm the updated value
mediaMeta = factory.getMediaMeta(args[0], true);
Logger.info("mediaMeta={}", mediaMeta);
Logger.info("updated description={}", mediaMeta.getDescription());