2020-12-29 06:33:37 +01:00
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<script src="js/peertube-dl-web.js"></script>
|
|
|
|
<link rel="stylesheet" href="css/index.css"></script>
|
2020-12-30 20:18:42 +01:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
2020-12-29 06:33:37 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-12-29 10:38:25 +01:00
|
|
|
<div class="application-container">
|
|
|
|
<h2>Peertube-dl Web Application</h2>
|
|
|
|
<form id="download-form">
|
|
|
|
<input class="block" type="text" id="download-form-url" placeholder="Introduce the url you want to download."/>
|
|
|
|
<button class="block" id="download-form-button" >Fetch from api</button>
|
|
|
|
</form>
|
|
|
|
</div>
|
2020-12-30 05:30:51 +01:00
|
|
|
<div id="modal-loading">
|
|
|
|
<embed src="img/spinner.svg"/>
|
|
|
|
</div>
|
2020-12-29 10:38:25 +01:00
|
|
|
<div id="modal-video-container">
|
2020-12-29 06:33:37 +01:00
|
|
|
<div class="video-container-bar">
|
|
|
|
<a id="close-and-reset-video-container">X</a>
|
|
|
|
</div>
|
2020-12-29 10:38:25 +01:00
|
|
|
<div id="video-container">
|
|
|
|
<div class="block">
|
|
|
|
<video id="video" controls="controls"></video>
|
|
|
|
</div>
|
|
|
|
<div id="download-video-container" class="block">
|
2020-12-30 05:30:51 +01:00
|
|
|
<a id="download-video-prepare" class="active">Prepare download</a>
|
|
|
|
<a id="download-video-loading"><embed src="img/spinner.svg"/></a>
|
2020-12-29 10:38:25 +01:00
|
|
|
<a id="download-video">Download</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-29 06:33:37 +01:00
|
|
|
</div>
|
2020-12-30 20:18:42 +01:00
|
|
|
<div id="poping-notice">
|
|
|
|
<p>This webpage is free as in freedom software, it is offered to you with the hope it will be useful, but without any warranty,
|
2020-12-30 20:22:39 +01:00
|
|
|
you can find the source code at <a href="https://gitea.sergiotarxz.freemyip.com/sergiotarxz/Peertube-dl">my gitea</a> with docs to setup your own
|
|
|
|
webpage like this, this software is licensed under the AGPLv3 license which means you MUST convey the source code in a human readable form
|
|
|
|
if you distribute this software or use it as an service to users of service or distributees.<p>
|
2020-12-30 20:18:42 +01:00
|
|
|
|
|
|
|
<p>I hope that if you find a non supported url which should be supported, a bug, or a feature you would like this webpage to have you file an issue in
|
|
|
|
<a href="https://gitea.sergiotarxz.freemyip.com/sergiotarxz/Peertube-dl/issues">https://gitea.sergiotarxz.freemyip.com/sergiotarxz/Peertube-dl/issues</a>
|
|
|
|
to help this software improve since I find tracking users a pretty bad way to discover bugs and potential good features.</p>
|
|
|
|
|
|
|
|
<p>This webpage may load third party resources depending on the url you give to it which may put cookies in your browser, you are
|
|
|
|
encouraged to frecuently delete your browser cookies to avoid those third parties tracking you on internet, Firefox offers you an
|
|
|
|
option to delete cookies as soon as you close the browser which may be a good idea to enable in the orwellian internet of today.</p>
|
|
|
|
<div id="poping-notice-container-bar">
|
|
|
|
<a id="close-poping-notice">X</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-12-29 06:33:37 +01:00
|
|
|
</body>
|
|
|
|
</html>
|