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
|
/*
* Copyright 1994-2012 Olivier Girondel
*
* This file is part of lebiniou.
*
* lebiniou is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 2 of the License, or
* (at your option) any later version.
*
* lebiniou is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with lebiniou. If not, see <http://www.gnu.org/licenses/>.
*/
#include "context.h"
u_long id = 1333296212;
u_long options = BE_NONE;
#define FFMPEG "ffmpeg" /* FIXME must be in $PATH */
#define RTMP_FFMPEG_ARGS "-loglevel quiet -re -vcodec ppm -f image2pipe -i pipe: -f flv"
#define RTMP_URL "rtmp://localhost:1935/rtmp/"PACKAGE
static FILE *rtmp = NULL;
static void
open_rtmp()
{
char cmd[MAXLEN+1];
char *args = NULL, *url = NULL;
memset(&cmd, '\0', MAXLEN+1);
if (NULL == (args = getenv("BINIOU_RTMP_FFMPEG_ARGS")))
args = RTMP_FFMPEG_ARGS;
if (NULL == (url = getenv("BINIOU_RTMP_URL")))
url = RTMP_URL;
g_snprintf(cmd, MAXLEN, "%s %s %s", FFMPEG, args, url);
if (NULL == (rtmp = popen(cmd, "w")))
xperror("RTMP:popen");
else {
printf("[i] RTMP: opened stream to %s\n", url);
printf("[i] RTMP: ffmpeg args: '%s'\n", args);
}
}
void
create(__attribute__ ((unused)) Context_t *ctx)
{
open_rtmp();
}
void
destroy(__attribute__ ((unused)) Context_t *ctx)
{
if (NULL != rtmp)
if (-1 == pclose(rtmp))
xperror("RTMP:pclose");
}
void
run(Context_t *ctx)
{
if (NULL != rtmp) {
u_char *data;
char buff[MAXLEN+1];
size_t res;
/* get picture */
data = export_RGB_active_buffer(ctx, 1);
memset(&buff, '\0', MAXLEN+1);
g_snprintf(buff, MAXLEN, "P6 %d %d 255\n", WIDTH, HEIGHT);
/* PPM header */
res = fwrite((const void *)&buff, sizeof(char), strlen(buff), rtmp);
if (res != strlen(buff)) {
fprintf(stderr, "[!] RTMP:write_header: short write (%d of %d)\n", (int)res, (int)strlen(buff));
exit(1);
}
/* PPM data */
res = fwrite((const void *)data, sizeof(Pixel_t), RGB_BUFFSIZE, rtmp);
xfree(data);
if (res != RGB_BUFFSIZE) {
fprintf(stderr, "[!] RTMP:write_image: short write (%d of %li)\n", (int)res, RGB_BUFFSIZE);
exit(1);
}
}
}
|