From 1ae7128b9dbe2bf653e347c8601e8807c61eb6f8 Mon Sep 17 00:00:00 2001 From: knotteye Date: Sat, 17 Oct 2020 01:07:29 -0500 Subject: [PATCH] Update server code --- src/cluster.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/cluster.ts b/src/cluster.ts index b9288fa..72f4fa2 100644 --- a/src/cluster.ts +++ b/src/cluster.ts @@ -127,6 +127,16 @@ if (cluster.isMaster) { console.log(`[RTMP Cluster WORKER ${process.pid}] Skipping recording for stream: ${id}`); } db.query('update user_meta set live=true where username=\''+results[0].username+'\' limit 1'); + db.query('SELECT twitch_key,enabled from twitch_mirror where username='+db.raw.escape(results[0].username)+' limit 1').then(async (tm) => { + if(!tm[0]['enabled'] || !config['twitch_mirror']['enabled'] || !config['twitch_mirror']['ingest']) return; + console.log('[NodeMediaServer] Mirroring to twitch for stream:',id) + execFile(config['media']['ffmpeg'], ['-loglevel', 'fatal', '-i', 'rtmp://127.0.0.1:'+config['rtmp']['port']+'/'+config['media']['privateEndpoint']+'/'+key, '-vcodec', 'copy', '-acodec', 'copy', '-f', 'flv', config['twitch_mirror']['ingest']+tm[0]['twitch_key']], { + detached: true, + stdio : 'inherit', + maxBuffer: Infinity + }).unref(); + }); + console.log('[NodeMediaServer] Stream key ok for stream:',id); console.log(`[RTMP Cluster WORKER ${process.pid}] Stream key ok for stream: ${id}`); //notify master process that we're handling the stream for this user process.send({type: 'handle-publish', name:results[0].username});