统计YouTube播放列表的时长

统计YouTube播放列表的时长包括总时长,最长,最短,平均

  1. // ==UserScript==
  2. // @name youtube playlist statitics
  3. // @name:zh-CN 统计YouTube播放列表的时长
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.2
  6. // @description statirics the videos duration of youtube playlist video include total,longest,shortest time
  7. // @description:zh-cn 统计YouTube播放列表的时长包括总时长,最长,最短,平均
  8. // @author Youer@https://github.com/youerning
  9. // @match https://www.youtube.com/playlist?list=*
  10. // @grant none
  11. // @require https://code.jquery.com/jquery-2.2.4.min.js
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. //'use strict';
  16. //var allSpan = document.getElementsByTagName("tbody")[0].getElementsByTagName("span");
  17. var allSpan = $("ul").find("tbody").find('span[aria-label]');
  18. // Total seconds
  19. var sumAll = 0;
  20. var vidTime = 0;
  21. var timeList = [];
  22.  
  23. for(var i=0;i<allSpan.length;i++) {
  24. var sp = allSpan[i];
  25. var spText = sp.innerText;
  26. var sumOne = 0;
  27. if (spText.indexOf(":") >= 0) {
  28. var spTextLis = spText.split(":");
  29. var lg = spTextLis.length;
  30. for (var j=0; j < lg; j++){
  31. var m = Math.pow(60, (lg - 1 - j));
  32. vidTime = parseInt(spTextLis[j]) * m;
  33. sumOne += vidTime;
  34. }
  35. } else {
  36. vidTime = parseInt(spText);
  37. sumOne += vidTime;
  38. }
  39. timeList.push(sumOne);
  40. sumAll += sumOne;
  41. }
  42. // console somethings
  43. console.log("The playlist is total: " + (sumAll/3600).toFixed(2) + "hours");
  44. console.log("average time of all: " + (sumAll / (60 * allSpan.length)).toFixed(2) + "minutes");
  45. console.log("longest video time: " + (Math.max.apply(Math, timeList)) / 60 + "minutes");
  46. console.log("shortest video time: " + (Math.min.apply(Math, timeList)) / 60 + "minutes");
  47. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址