So I found out how to generate the URL of an mp3 download link of a Youtube video given its videoID with the help of this question: Youtube download link from http://www.youtube-mp3.org/
The generated media URL would be http://www.youtube-mp3.org/get?ab=128&video_id="+video_id+"&h="+info.h+"&r="+timeNow+"."+cc(video_id+timeNow)
But how do I access the header file, info.h? I've done a bit of C++, but I don't know how I would access it in Android.
Also, what does the "cc" mean?
Thank you.