blob: c80c1c87db94013e87d647c44faeb7ee3e864468 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
<%pre>
#include <vdr/config.h>
#include "setup.h"
#include "grab.h"
using namespace vdrlive;
</%pre>
<%args>
int quality = 80;
int width = 569;
int height = 320;
</%args>
<%session scope="global">
bool logged_in(false);
</%session>
<%cpp>
if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
reply.setContentType("image/jpg");
GrabImageInfo image = LiveGrabImageManager().GetImage();
if ( image.second > 0 )
reply.out().write( image.first.get(), image.second );
</%cpp>
|