better wording, adding faq
This commit is contained in:
parent
ae502f4c6c
commit
1ad4cd426a
|
|
@ -139,8 +139,9 @@ app.ws('/save', {
|
|||
data.videoDetails.channelId)
|
||||
|
||||
if (isSlop) {
|
||||
sendError(ws, 'Filters can always be wrong. Is the rating wrong? Email me at admin@preservetube.com', false);
|
||||
return sendError(ws, 'Your download has been rejected by our slop filter.');
|
||||
sendError(ws, 'Filters can always be wrong. Is the rating wrong? Email me at admin@preservetube.com<br>', false);
|
||||
sendError(ws, '<br>Read more about which videos aren\'t suitable on our <a href="/about">FAQ</a> page.', false)
|
||||
return sendError(ws, 'This video was identified as not suitable for our platform.');
|
||||
}
|
||||
|
||||
const downloadResult = await downloadVideo(ws, videoId);
|
||||
|
|
@ -220,8 +221,9 @@ app.ws('/savechannel', {
|
|||
video.description_snippet?.text || '', channelId)
|
||||
|
||||
if (isSlop) {
|
||||
sendError(ws, 'Filters can always be wrong. Is the rating wrong? Email me at admin@preservetube.com', false);
|
||||
sendError(ws, 'Your download has been rejected by our slop filter.');
|
||||
sendError(ws, 'Filters can always be wrong. Is the rating wrong? Email me at admin@preservetube.com<br>', false);
|
||||
sendError(ws, '<br>Read more about which videos aren\'t suitable on our <a href="/about">FAQ</a> page.', false)
|
||||
sendError(ws, 'This video was identified as not suitable for our platform.', false);
|
||||
continue;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -21,6 +21,14 @@
|
|||
Older videos (ones before Sept 19th 2025) were sadly encoded in a way that requires the browser to load the whole video before being able to play it. Newer videos no longer require this.<br><br>
|
||||
Other reasons for videos loading slowly include your location in comparison to the nearest caching server, and that servers location in comparison to the storage server. The video might be traveling a lot of kilometers before reaching you.
|
||||
|
||||
<h3>What can't be archived?</h3>
|
||||
To stay true to Preservetube's mission, we automatically screen submissions through an AI model. The following types of videos are not eligible for archiving:
|
||||
<ul>
|
||||
<li>Raw unedited clips from movies or TV series;</li>
|
||||
<li>AI-generated content or compilations made with tools like Sora;</li>
|
||||
<li>Short-form edits of TV show characters (e.g. "sigma edits").</li>
|
||||
</ul>
|
||||
|
||||
<h3>How do I get in touch with you?</h3>
|
||||
I'm reachable via admin@preservetube.com (<a class="a" href="/pgp.txt">pgp</a>).
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue