优酷真实视频地址解析——2014年10月7日

原文章的代码是用C#写的。本文在作者代码的基础上将代码转换成Java代码,方便Java程序员使用。

例:http://v.youku.com/v_show/id_XNzk2NTI0MzMy.html

1:获取视频vid

在视频url中标红部分。一个正则表达式即可获取。

  1. public static String getVid(String url) {
  2. String s = "";
  3. String strRegex = "(?<=id_)(\\w+)";
  4. Pattern pattern = Pattern.compile(strRegex);
  5. Matcher matcher = pattern.matcher(url);
  6. while (matcher.find()) {
  7. s = matcher.group();
  8. }
  9. return s;
  10. }

2:获取视频元信息

  http://v.youku.com/player/getPlayList/VideoIDS/XNzk2NTI0MzMy/Pf/4/ctype/12/ev/1

  将前述vid嵌入到上面url中访问即可得到视频信息文件。由于视频信息过长不在此贴出全部内容。下面是部分重要内容的展示。(获取文件为json文件,可直接解析)

  1. { "data": [ {
  2. "ip": 996949050,
  3. "ep": "NQXRTAodIbrd1vnC8+JxB4emuRs41w7DWho=",
  4. "segs": {
  5. "hd2": [
  6. {
  7. "no": "0",
  8. "size": "34602810",
  9. "seconds": 205,
  10. "k": "248fe14b4c1b37302411f67a",
  11. "k2": "1c8e113cecad924c5"
  12. },
  13. {
  14. "no": "1",
  15. },]
  16. },
  17. }
  18. ],
  19. }

上面显示的内容后面都会使用到。其中segs包含hd3,hd2,flv,mp4,3gp等各种格式,并且每种格式下均分为若干段。本次选用清晰度较高的hd2(视频格式为flv)

3:拼接m3u8地址

http://pl.youku.com/playlist/m3u8?ctype=12&ep={0}&ev=1&keyframe=1&oip={1}&sid={2}&token={3}&type={4}&vid={5}

以上共有6个参数,其中vid和oip已经得到,分别之前的vid和json文件中的ip字段,即(XNzk2NTI0MzMy和1991941296),但是ep,sid,token需要重新计算(json文件中的ep值不能直接使用)。type即为之前选择的segs。

3.1计算ep,sid,token

计算方法单纯的为数学计算,下面给出计算的函数。三个参数可一次性计算得到。其中涉及到Base64编码解码知识,点击查看

  1. private static String myEncoder(String a, byte[] c, boolean isToBase64) {
  2. try {
  3. String result = "";
  4. ArrayList<Byte> bytesR = new ArrayList<Byte>();
  5. int f = 0, h = 0, q = 0;
  6. int[] b = new int[256];
  7. for (int i = 0; i < 256; i++)
  8. b[i] = i;
  9. while (h < 256) {
  10. f = (f + b[h] + a.charAt(h % a.length())) % 256;
  11. int temp = b[h];
  12. b[h] = b[f];
  13. b[f] = temp;
  14. h++;
  15. }
  16. f = 0;
  17. h = 0;
  18. q = 0;
  19. while (q < c.length) {
  20. h = (h + 1) % 256;
  21. f = (f + b[h]) % 256;
  22. int temp = b[h];
  23. b[h] = b[f];
  24. b[f] = temp;
  25. byte[] bytes = new byte[] { (byte) (c[q] ^ b[(b[h] + b[f]) % 256]) };
  26. bytesR.add(bytes[0]);
  27. result += new String(bytes, "US-ASCII");
  28. q++;
  29. }
  30. if (isToBase64) {
  31. Byte[] byteR = bytesR.toArray(new Byte[bytesR.size()]);
  32. byte[] bs = new byte[byteR.length];
  33. for (int i = 0; i < byteR.length; i++) {
  34. bs[i] = byteR[i].byteValue();
  35. }
  36. result = Base64.encodeToString(bs, Base64.DEFAULT);
  37. }
  38. return result;
  39. } catch (Exception e) {
  40. e.printStackTrace();
  41. return "";
  42. }
  43. }
  44. /**
  45. * 获取到优酷链接的sid token 新的ep
  46. *
  47. * @param vid
  48. * @param ep
  49. *            旧的ep
  50. * @return rs[0] = sid; rs[1] = token; rs[2] = epNew;
  51. */
  52. public static String[] getValues(String vid, String ep) {
  53. try {
  54. String template1 = "becaf9be";
  55. String template2 = "bf7e5f01";
  56. byte[] bytes = Base64.decode(ep, Base64.DEFAULT);
  57. ep = new String(bytes, "US-ASCII");
  58. String temp = myEncoder(template1, bytes, false);
  59. String[] part = temp.split("_");
  60. String sid = part[0];
  61. String token = part[1];
  62. String whole = sid + "_" + vid + "_" + token;
  63. byte[] newbytes = whole.getBytes("US-ASCII");
  64. String epNew = myEncoder(template2, newbytes, true);
  65. epNew = URLEncoder.encode(epNew);
  66. String[] rs = new String[3];
  67. rs[0] = sid;
  68. rs[1] = token;
  69. rs[2] = epNew;
  70. return rs;
  71. } catch (Exception e) {
  72. e.printStackTrace();
  73. return null;
  74. }
  75. }

计算得到ep,token,sid分别为cCaVGE6OUc8H4ircjj8bMiuwdH8KXJZ0vESH/7YbAMZuNaHQmjbTwg==, 3825, 241273717793612e7b085。注意,此时ep并不能直接拼接到url中,需要对此做一下url编码ToUrlEncode(ep)。最终ep为cCaVGE6OUc8H4ircjj8bMiuwdH8KXJZ0vESH%2f7YbAMZuNaHQmjbTwg%3d%3d

3.2视频格式及清晰度

视频格式和选择的segs有密切关系。如本文选择的hd2,格式即为flv,下面是segs,视频格式和清晰度的对照。之前对此部分理解有些偏差,多谢削着苹果走路提醒。

  1. “segs”,”视频格式”,”清晰度”
  2. "hd3", "flv", "1080P"
  3. "hd2", "flv", "超清"
  4. "mp4", "mp4", "高清"
  5. "flvhd", "flv", "高清"
  6. "flv", "flv", "标清"
  7. "3gphd", "3gp", "高清"

3.3拼接地址

  最后的m3u8地址为:

http://pl.youku.com/playlist/m3u8?

ctype=12&ep=cCaVGE6OUc8H4ircjj8bMiuwdH8KXJZ0vESH%2f7YbAMZuNaHQmjbTwg%3d%3d&ev=1

&keyframe=1&oip=996949050&sid=241273717793612e7b085&token=3825&type=hd2&vid=XNzk2NTI0MzMy

4:获取视频地址

将上述m3u8文件下载后,其中内容即为真实地址,不过还需要稍微处理一下。部分内容如下:

  1. #EXTM3U
  2. #EXT-X-TARGETDURATION:12
  3. #EXT-X-VERSION:3
  4. #EXTINF:6.006,
  5. http://59.108.137.14/65666E0ED34581E6B96293A18/0300010F005430BCBA49631468DEFEC61C5678-3A78-37BA-1971-21A0D4EEA0E7.flv?ts_start=0&ts_end=5.906&ts_seg_no=0&ts_keyframe=1
  6. #EXTINF:5.464,
  7. http://59.108.137.14/65666E0ED34581E6B96293A18/0300010F005430BCBA49631468DEFEC61C5678-3A78-37BA-1971-21A0D4EEA0E7.flv?ts_start=5.906&ts_end=11.37&ts_seg_no=1&ts_keyframe=1
  8. #EXTINF:5.505,
  9. http://59.108.137.14/65666E0ED34581E6B96293A18/0300010F005430BCBA49631468DEFEC61C5678-3A78-37BA-1971-21A0D4EEA0E7.flv?ts_start=11.37&ts_end=16.875&ts_seg_no=2&ts_keyframe=1
  10. #EXTINF:9.26,
  11. http://59.108.137.14/65666E0ED34581E6B96293A18/0300010F005430BCBA49631468DEFEC61C5678-3A78-37BA-1971-21A0D4EEA0E7.flv?ts_start=16.875&ts_end=26.135&ts_seg_no=3&ts_keyframe=1
  12. #EXTINF:11.136,
  13. http://59.108.137.14/65666E0ED34581E6B96293A18/0300010F005430BCBA49631468DEFEC61C5678-3A78-37BA-1971-21A0D4EEA0E7.flv?ts_start=26.135&ts_end=37.271&ts_seg_no=4&ts_keyframe=1
  14. #EXTINF:8.258,
  15. http://59.108.137.14/65666E0ED34581E6B96293A18/0300010F005430BCBA49631468DEFEC61C5678-3A78-37BA-1971-21A0D4EEA0E7.flv?ts_start=37.271&ts_end=45.529&ts_seg_no=5&ts_keyframe=1
  16. #EXTINF:9.843,
  17. http://59.108.137.14/65666E0ED34581E6B96293A18/0300010F005430BCBA49631468DEFEC61C5678-3A78-37BA-1971-21A0D4EEA0E7.flv?ts_start=45.529&ts_end=55.372&ts_seg_no=6&ts_keyframe=1
  18. #EXTINF:10.26,
  19. http://59.108.137.14/65666E0ED34581E6B96293A18/0300010F005430BCBA49631468DEFEC61C5678-3A78-37BA-1971-21A0D4EEA0E7.flv?ts_start=55.372&ts_end=65.632&ts_seg_no=7&ts_keyframe=1

  其中每条url只包含6s左右视频,但是可将url中参数部分去掉即可得到实际的长度。但是每条去掉后需合并一下相同的url,如上述列表可得到url片段

http://59.108.137.14/65666E0ED34581E6B96293A18/0300010F005430BCBA49631468DEFEC61C5678-3A78-37BA-1971-21A0D4EEA0E7.flv

将m3u8中所有的url片段全部下载即可大功告成。

原文地址:http://www.cnblogs.com/zhaojunjie/p/4009192.html

时间: 2024-11-07 20:43:00

优酷真实视频地址解析——2014年10月7日的相关文章

优酷真实视频地址解析2015-11-24

11月24日起优酷视频破解算法又发生了变化,相比以前几个月改一次,这个算法维持了1年多,也算是蛮良心的,23333. 今早起来发现优酷的视频都播不了了,一查究竟,原来是算法中的一步又改了.目前优酷视频源算法基本还是沿用3shi和这位大大的思路,请详细阅读<优酷真实视频地址解析——2014年10月7日> 当然,到2015年11月24日,算法中第二步“获取视频元信息”的请求API: http://v.youku.com/player/getPlayList/VideoIDS/{vid}/Pf/4/

优酷真实视频地址解析(更新至2016-2-28)

优酷视频的算法在2015年11月24日起至今连续更改了好几个版本,之前发的这篇临时解决方案得到很多响应,非常感谢!现在对这篇文章重新修改,全面规整完整的破解思路(含破解方法)! 对了,这篇文章只是针对m3u8格式的视频. 一.准备工作 所谓工欲善其事必先利其器,做好破解的准备工作会令你事半功倍. 1.首先准备一个Http抓包工具,PC上推荐Fiddler或者Postman,iOS上推荐Surge 2.手备一台iOS测试设备(因为在Safari里优酷视频是确定使用m3u8进行播放的) 二.抓包过程

【每日圣经日历】2014年10月2日

Jeudi le 2 Octobre 2014 礼拜四 2014年10月2日 Maintenant, Seigneur ternel, tu es Dieu, et tes paroles sont vérité, et tu as annoncé cette grce à ton serviteur.                                                                      2 Samuel 7. 28 主耶和华阿,惟有你是神.你

【每日圣经日历】2014年10月1日

Mercredi le 1 Octobre 2014 礼拜三 2014年10月1日 Car il viendra un temps où les hommes ne supporteront pas la saine doctrine; mais, ayant la démangeaison d'entendre des choses agréables, ils se donneront une foule de docteurs selon leurs propres désires, dé

【每日圣经日历】2014年10月9日

Jeudi le 9 Octobre 2014 礼拜四 2014年10月9日 Demandez, et l'on vous donnera; cherchez, et vous trouverez; frappez, et l'on vous ouvrira.Car quiconque demande reoit, celui qui cherche trouve, et l'on ouvre à celui qui frappe.                                

【每日圣经日历】2014年10月17日

注:移动用户(特别是苹果(Ipad))可以全选文字使用机器朗读 Vendredi le 17 Octobre 2014 礼拜五 2014年10月17日 C'est pour la liberté que Christ nous a affranchis. Demeurez donc \nfermes, et ne vous laissez pas mettre de nouveau sous le joug de la \nservitude.                          

【每日圣经日历】2014年10月11日

注:移动用户(特别是苹果(Ipad))可以全选文字使用机器朗读 Samedi le 11 Octobre 2014 礼拜六 2014年10月11日 Ne vous enivrez pas de vin: c'est de la débauche. Soyez, au contraire, remplis de l'Esprit;entretenez-vous par des psaumes, par des hymnes, et par des cantiques spirituels, cha

【每日圣经日历】2014年10月3日

Vendredi le 3 Octobre 2014 礼拜五 2014年10月3日 Faites en tout temps par l'Esprit toutes sortes de prières et de supplications. Veillez à cela avec une entière persévérance, et priez pour tous les saints.                                                    

【每日圣经日历】2014年10月4日

Samedi le 4 Octobre 2014 礼拜六 2014年10月4日 Que le mariage soit honoré de tous, et le lit conjugal exempt de souillure, car Dieu jugera les impudiques et les adultères.                                                                    Hébreux 13. 4 婚姻,人