blob: 631e40d9f7aa0fba7d4f6738ad5eeb64f52952a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/usr/bin/env
use strict;
use warnings;
use Capture::Tiny ':all';
$! = 1;
print "Content-Type: video/mp4\n\n";
my ($stdout, $stderr) = tee {
system('wget', '-qO-', 'http://stream.tg13.gathering.org:3013');
};
|