The videos page may be empty, click next till videos start showing up.
prepare("select * from SavedVideo LIMIT ".strval($offset*20).", 20");
$stmt->execute();
$videos = $stmt->fetchAll();
foreach($videos as $video)
{
$class = "class=\"bg-danger\"";
if(strlen(video_exists($video["Id"],"PreMuxed")) > 0)
{
echo "".htmlspecialchars($video["Title"])."";
echo "
";
}
}
?>