Back to project page android-youtubeExtractor.
The source code is released under:
MIT License
If you think the Android project android-youtubeExtractor listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package at.huber.youtubeExtractor; /*w w w.j a va 2 s . co m*/ public class YtFile { Meta meta; String url = ""; YtFile(Meta meta, String url) { this.meta=meta; this.url = url; } /** * The url to download the file. */ public String getUrl(){ return url; } /** * Meta data for the specific file. */ public Meta getMeta(){ return meta; } }