1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
/* display single iframes as stillimages
* iframes can be created with the 'convert' tool from imagemagick
* and mpeg2encode from ftp.mpeg.org, and must have a supported
* size, e.g. 702x576:
* $ convert -sample 702x576\! test.jpg test.mpg
*
* or more advanced using netpbm and mpeg2enc (not mpeg2encode) :
* $ cat image.jpg | jpegtopnm | pnmscale -xsize=704 -ysize=576 |\
* ppmntsc --pal | ppmtoy4m -F 25:1 -A 4:3 |\
* mpeg2enc -f 7 -T 90 -F 3 -np -a 2 -o "image.mpg"
*
*/
#include <sys/ioctl.h>
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <time.h>
#include <unistd.h>
#include <linux/dvb/video.h>
static const char *usage_string = "\n\t"
"usage: %s <still.mpg> [still.mpg ...]\n"
"\n\t"
"to use another videodev than the first, set the environment variable VIDEODEV\n\t"
"e.g.[user@linux]$ export VIDEODEV=\"/dev/dvb/adapter1/video1\".\n\t"
"to display the image <n> seconds, instead of 10, set the variable SSTIME\n\t"
"e.g. [user@linux]$ export SSTIME=\"60\" to display the still for 1 minute.\n\t"
"this options can be set in the same line as the %s command:\n\t"
"e.g. $ SSTIME=25 VIDEODEV=/dev/dvb/adapter1/video1 %s ...\n";
int main (int argc, char **argv)
{
int fd;
int filefd;
struct stat st;
struct video_still_picture sp;
char *videodev = "/dev/dvb/adapter0/video0";
char *env_sstime;
int i = 1;
int tsec = 10;
if (argc < 2) {
fprintf (stderr, usage_string, argv[0],argv[0],argv[0]);
return -1;
}
if (getenv ("VIDEODEV"))
videodev = getenv("VIDEODEV");
if (getenv ("SSTIME")) {
env_sstime = getenv("SSTIME");
tsec = atoi(env_sstime);
}
if ((fd = open(videodev, O_RDWR)) < 0) {
perror(videodev);
return -1;
}
next_pic:
printf("I-frame : '%s'\n", argv[i]);
if ((filefd = open(argv[i], O_RDONLY)) < 0) {
perror(argv[i]);
return -1;
}
fstat(filefd, &st);
sp.iFrame = (char *) malloc (st.st_size);
sp.size = st.st_size;
printf("I-frame size: %d\n", sp.size);
if (!sp.iFrame) {
fprintf (stderr, "No memory for I-Frame\n");
return -1;
}
printf ("read: %d bytes\n", read(filefd, sp.iFrame, sp.size));
close(filefd);
if ((ioctl(fd, VIDEO_STILLPICTURE, &sp) < 0)) {
perror("ioctl VIDEO_STILLPICTURE");
return -1;
}
free(sp.iFrame);
printf("Display image %d seconds ...\n",tsec);
sleep(tsec);
printf("Done.\n");
if (argc > ++i)
goto next_pic;
return 0;
}
|