1
Fork 0
poke/html/download.ejs

274 lines
10 KiB
Text
Raw Normal View History

2022-08-07 11:32:47 -04:00
<!--
2022-07-12 13:12:54 -04:00
This Source Code Form is subject to the terms of the GNU General Public License:
Copyright (C) 2021-2022 POKETUBE (https://github.com/iamashley0/poketube)
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see https://www.gnu.org/licenses/.
--><!DOCTYPE html><html>
<head>
<title>PokeTube - Download Video</title>
2022-07-13 06:49:51 -04:00
<meta content="<%=color%>" name="theme-color">
2022-07-12 13:12:54 -04:00
<link href=/css/yt-ukraine.svg?v=6 rel=icon>
2022-08-07 09:17:47 -04:00
<link rel="preconnect" href="https://fonts.gstatic.com">
2022-07-12 13:12:54 -04:00
<link href="https://fonts.googleapis.com/css2?family=Sigmar+One&amp;display=swap" rel="stylesheet">
<meta content=website property=og:type>
2022-07-13 06:49:51 -04:00
<meta content="PokeTube - Video Downloader" property=og:title>
2022-09-13 15:06:26 -04:00
<meta content="You wouldn't download a car... Right? - Download this video by <%=video.Channel.Name%> on PokeTube " property=twitter:description>
2022-07-13 06:49:51 -04:00
<meta content="https://i.ytimg.com/vi/<%=video.id%>/maxresdefault.jpg" property=og:image>
2022-09-01 09:30:33 -04:00
<meta content=summary_large_image name=twitter:card>
2022-07-12 13:12:54 -04:00
<meta content=@PoketaleBot name=twitter:site>
<meta content=@PoketaleBot name=twitter:creator>
2022-07-13 06:49:51 -04:00
<link href=/css/app-cdn.min.css rel=stylesheet>
<link href=/css/app.main.css rel=stylesheet>
2022-09-01 09:30:33 -04:00
<link href="https://fonts.poketube.fun/css/fonts.css" rel=stylesheet>
2022-07-13 06:49:51 -04:00
<link href="/css/watch.main.css?v=56" rel=stylesheet>
2022-07-12 13:12:54 -04:00
<link href=https://site-assets.fontawesome.com/releases/v6.1.1/css/all.css rel=stylesheet>
<style>
a.class:hover {
text-decoration:underline;
font-weight:bold
}
summary{
color:gray;
}
summary:hover{
color:white;
}
</style>
<!-- WIGGLE WIGGLE WIGGLE -->
<style>
body{
overflow-x: hidden; /* Hide horizontal scrollbar */
2022-08-11 20:06:08 -04:00
overflow-y: hidden; /* Hide scrollbar */
2022-07-12 13:12:54 -04:00
color:#111111
}
.animated {
-webkit-animation-duration: 10s;
animation-duration: 10s;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
animation-iteration-count: infinite;
-moz-animation-iteration-count: infinite;
-webkit-animation-iteration-count: infinite;
-o-animation-iteration-count: infinite;
}
@-webkit-keyframes wiggle {
0% { -webkit-transform: skewX(9deg); }
10% { -webkit-transform: skewX(-8deg); }
20% { -webkit-transform: skewX(7deg); }
30% { -webkit-transform: skewX(-6deg); }
40% { -webkit-transform: skewX(5deg); }
50% { -webkit-transform: skewX(-4deg); }
60% { -webkit-transform: skewX(3deg); }
70% { -webkit-transform: skewX(-2deg); }
80% { -webkit-transform: skewX(1deg); }
90% { -webkit-transform: skewX(0deg); }
100% { -webkit-transform: skewX(0deg); }
}
@keyframes wiggle {
0% { transform: skewX(9deg); }
10% { transform: skewX(-8deg); }
20% { transform: skewX(7deg); }
30% { transform: skewX(-6deg); }
40% { transform: skewX(5deg); }
50% { transform: skewX(-4deg); }
60% { transform: skewX(3deg); }
70% { transform: skewX(-2deg); }
80% { transform: skewX(1deg); }
90% { transform: skewX(0deg); }
100% { transform: skewX(0deg); }
}
.wiggle {
-webkit-animation-name: wiggle;
animation-name: wiggle;
-webkit-animation-timing-function: ease-in;
animation-timing-function: ease-in;
}
.animated.wiggle {
-webkit-animation-duration: 0.75s;
animation-duration: 0.75s;
}
:root {
--text-primary: #fff;
--text-secondary: #fff;
--text-link: #3ea6ff;
--app-background: #111111;
--context-menu-background: #333;
--border-color: #444;
--item-hover-background: #373737;
--item-active-background: #383838;
--top-bar-background: #202020;
--guide-background: #212121;
--thumbnail-background: #252525;
--channel-info-background: #181818;
--channel-contents-background: #0f0f0f;
}
@font-face {
font-family: 'Ginto Nord';
font-weight: 800;
src:url('https://cdn.statically.io/gh/brecert/discord-quote-generator/main/Ginto-Nord-800.woff') format("woff");
}
.alert {
padding: 20px;
background-color: #f44336;
color: white;
opacity: 1;
transition: opacity 0.6s;
margin-bottom: 15px;
}
.alert.success {background-color: #04AA6D;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}
.closebtn {
margin-left: 15px;
color: white;
font-weight: bold;
float: right;
font-size: 22px;
line-height: 20px;
cursor: pointer;
transition: 0.3s;
}
2022-08-07 11:32:47 -04:00
a{
border-radius:13px
}
2022-07-12 13:12:54 -04:00
.closebtn:hover {
color: black;
}
</style>
</head>
<body>
<div class="app">
<nav>
2022-08-08 09:01:38 -04:00
<div class=left><a class="class" href="/143" style=font-family:Inter,sans-serif;color:#fff><img style="width: 8.5em;display: block;margin-left: auto;margin-right: auto;" src="/css/logo.svg?v=5"> <a href="/domains"><i style="display: block;margin-left: auto;margin-right: auto;" class="fas fa-server"></i> </a></div>
2022-07-12 13:12:54 -04:00
<div class=middle>
<form action=/search><input class=search-bar autocomplete="on" id=fname name=query style="color:#fff;font-family:Inter,sans-serif;"> <button class="btn btn-success" type=submit><i class="fas fa-search"></i></button></form>
</div>
<div class=right><a href="/privacy"><i class="fas fa-shield"></i></a><a href="/video/upload?from="><i class="fas fa-video"></i></a> <a href="https://github.com/iamashley0/poketube/"><i class="fab fa-git-alt"></i></a><a href="https://github.com/iamashley0/poketube/issues"><i class="fas fa-bug"></i></a></a></div>
</nav>
<div class="playlist-page">
2022-09-13 15:06:26 -04:00
<div class="playlist-info" style="border-radius:12px;font-family:'Inter';margin: 8px;padding: 18px;background-color: black;width: fit-content;height: fit-content;">
<div class="thumbnail" style="background-image: url('https://i.ytimg.com/vi/<%=video.id%>/hqdefault.jpg');border-radius: 5px;">
2022-07-13 06:49:51 -04:00
<a href="/watch?v=<%=video.id%>">Watch The Video</a>
2022-07-12 13:12:54 -04:00
</div>
2022-07-13 06:49:51 -04:00
<p class="title"><%=video.Title%></p>
2022-07-12 13:12:54 -04:00
<span class="info"><%=engagement.viewCount.toLocaleString()%> Views • Uploaded <%=date%></span>
<div class="channel-info">
<a href="/channel?id=<%=video.Channel.id%>" class="avatar">
<img src=" <%= k.Video.Channel.Avatar[1].$t %>">
</a>
</a>
<div class="name">
<a class="name" href="/channel?id=<%=video.Channel.id%>"><%=video.Channel.Name%></a>
</div>
</div>
</div>
2022-07-13 06:49:51 -04:00
2022-07-12 13:12:54 -04:00
<div class="video-list download-list playlist-video-list">
2022-08-11 20:06:08 -04:00
<div>
<h1 style="font-family:'Ginto Nord';font-weight:900;white-space:yes;">DOWNLOAD VIDEO</h1>
<p>Select an pog format qwq</p>
</div>
<div class="format-list">
2022-08-08 14:36:31 -04:00
<h2>Muxed formats</h2>
2022-08-07 11:32:47 -04:00
<div class="download-format" style="background: black;margin: 6px;border-radius: 14px;/*! text-align: center; */"> <div style="font-family:'Ginto Nord'">
3GPP
</div>
<a style="color:#fff;font-family:Inter" href="/api/video/download?v=<%=video.id%>&q=17">
<i class="fas fa-download"></i>
Download
</a>
<br>
</div>
<div class="download-format" style="background: black;margin: 6px;border-radius: 14px;/*! text-align: center; */"> <div style="font-family:'Ginto Nord'">
MP4 (480p)
</div>
<a style="color:#fff;font-family:Inter" href="/api/video/download?v=<%=video.id%>&q=18">
<i class="fas fa-download"></i>
Download
</a>
<br>
</div>
2022-08-08 14:36:31 -04:00
<div class="download-format" style="background: black;margin: 6px;border-radius: 14px;/*! text-align: center; */"> <div style="font-family:'Ginto Nord'"> MP4 (720p)
</div>
2022-08-07 11:32:47 -04:00
<a style="color:#fff;font-family:Inter" href="/api/video/download?v=<%=video.id%>">
2022-07-12 13:12:54 -04:00
<i class="fas fa-download"></i>
Download
</a>
2022-07-13 06:49:51 -04:00
<br>
2022-07-12 13:12:54 -04:00
</div>
2022-08-08 14:36:31 -04:00
<p style="visibility: hidden;">
2022-07-13 06:49:51 -04:00
we dont see the videos that you are downloading :P
</p>
2022-07-12 13:12:54 -04:00
</div>
2022-08-08 14:36:31 -04:00
<div class="format-list">
2022-08-11 20:06:08 -04:00
<h2>Audio formats</h2>
2022-09-13 15:06:26 -04:00
2022-08-08 14:36:31 -04:00
<div class="download-format" style="background: black;margin: 6px;border-radius: 14px;/*! text-align: center; */"> <div style="font-family:'Ginto Nord'"> webm (50k)
</div>
<a style="color:#fff;font-family:Inter" href="/api/video/download?v=<%=video.id%>&q=249&f=webm">
<i class="fas fa-download"></i>
Download
</a>
<br>
</div>
<div class="download-format" style="background: black;margin: 6px;border-radius: 14px;/*! text-align: center; */"> <div style="font-family:'Ginto Nord'"> webm (160k)
</div>
<a style="color:#fff;font-family:Inter" href="/api/video/download?v=<%=video.id%>&q=251&f=webm">
<i class="fas fa-download"></i>
Download
</a>
<br>
</div>
<p style="visibility: hidden;">
gfhefdhgrdfhdfshfgddfsfdgdfsds gfhefdhgrdfhdfshfgddfsfdgdfsds
</p>
2022-07-12 13:12:54 -04:00
</div>
</div>
2022-08-11 20:06:08 -04:00
<img src="https://t.poketube.fun/t/rep.gif?download_video=<%=btoa(video.id)%>" style="width: 0;visibility: hidden;" id="download_page">
2022-07-12 13:12:54 -04:00
</div>
</body>
</html>