public List<String> getLyric(ISong song) throws IOException {
InputStream in = getInputStream(String.format(URL_LYRIC, song.getId()));
String response = Utils.streamToString(in);
System.out.println(response);
ZingLyric result = gson.fromJson(response, ZingLyric.class);
return result.getLyric();
}