We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2351b9 commit 204fb8eCopy full SHA for 204fb8e
scripts/ggDrive_downloadAllVideosInFolder.js
@@ -65,7 +65,8 @@ export default {
65
.map(({ quality, url }) => {
66
if (!(quality in allUrls)) allUrls[quality] = [];
67
allUrls[quality].push(url);
68
- return `<a target="_blank" href="${url}">${quality}</a>`;
+ return /* html */ `<a target="_blank" href="${url}">${quality}</a>
69
+ <video src="${url}" controls width="300"></video>`;
70
})
71
.join("<br/>");
72
0 commit comments