Skip to content

Commit 204fb8e

Browse files
committed
show video tag
1 parent c2351b9 commit 204fb8e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/ggDrive_downloadAllVideosInFolder.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,8 @@ export default {
6565
.map(({ quality, url }) => {
6666
if (!(quality in allUrls)) allUrls[quality] = [];
6767
allUrls[quality].push(url);
68-
return `<a target="_blank" href="${url}">${quality}</a>`;
68+
return /* html */ `<a target="_blank" href="${url}">${quality}</a>
69+
<video src="${url}" controls width="300"></video>`;
6970
})
7071
.join("<br/>");
7172

0 commit comments

Comments
 (0)