Skip to content

Instantly share code, notes, and snippets.

@half-duplex
half-duplex / youtube-playlist-duration.js
Last active December 30, 2019 02:09 — forked from liaohuqiu/gist:4ee77b9b03afcdecc80252252378d367
Find duration of YouTube playlist
var pl_times = document.getElementsByClassName('pl-video-time');
var time = 0;
function toS(hms) {
var a = hms.split(':');
while (a.length < 3) {
a.unshift(0);
}
var seconds = (+a[0]) * 60 * 60 + (+a[1]) * 60 + (+a[2]);
return seconds;