有人可以告诉我如何编码/解码(在android中)与直接URL间接的youtube URL,以便从Youtube下载视频吗?我尝试了转换实际间接URL的可能方法,并对它们进行编码,以提供另一个由十六进制值组成的URL。但是这种方法无法正常工作,因为我无法解析使用我的下载管理器类下载视频的URL。感谢所有在这个论坛中发展天才的人,以帮助像我这样的初学者。提前感谢那些给我解决方案的人。
PS:这只是为了个人使用而非商业用途。另外,我出于好奇而这样做。
答案 0 :(得分:0)
3个步骤:
第1步:检查YouTube的内容代码(HTML),您将获得此类链接(http%253A%252F%252Fo-o.preferred.telemar-cnf1.v18.lscache6.c.youtube .com%252Fvideoplayback ...);
步骤2:解码网址(删除代码%2B,%25等),使用代码http://www.w3schools.com/tags/ref_urlencode.asp创建解码器并使用函数Uri.decode(url)替换无效的转义八位字节; < / p>
步骤3:使用代码下载流:
URL u = null;
InputStream is = null;
try {
u = new URL(url);
is = u.openStream();
HttpURLConnection huc = (HttpURLConnection)u.openConnection();//to know the size of video
int size = huc.getContentLength();
if(huc != null){
String fileName = "FILE.mp4";
String storagePath = Environment.getExternalStorageDirectory().toString();
File f = new File(storagePath,fileName);
FileOutputStream fos = new FileOutputStream(f);
byte[] buffer = new byte[1024];
int len1 = 0;
if(is != null){
while ((len1 = is.read(buffer)) > 0) {
fos.write(buffer,0, len1);
}
}
if(fos != null){
fos.close();
}
}
}catch (MalformedURLException mue) {
mue.printStackTrace();
} catch (IOException ioe) {
ioe.printStackTrace();
} finally {
try {
if(is != null){
is.close();
}
}catch (IOException ioe) {
// just going to ignore this one
}
}