Added executable

Added controller file to launch other processes
Moved compile dir to build
merge-requests/1/merge
knotteye 5 years ago
parent 4309da7c39
commit d05c59c896
  1. 3
      .gitignore
  2. 3
      satyr
  3. 29
      src/controller.ts
  4. 41
      src/server.ts
  5. 6
      tsconfig.json

3
.gitignore vendored

@ -1,5 +1,4 @@
node_modules
media
server.js
chanbot.js
build/**
lib/inspircd-*

@ -0,0 +1,3 @@
#!/usr/bin/env node
const satyr = require("./build/controller");
satyr.boot();

@ -0,0 +1,29 @@
import * as mediaserver from "./server";
function boot(): void{
const mediaconfig: any = {
rtmp: {
port: 1935,
chunk_size: 60000,
gop_cache: true,
ping: 30,
ping_timeout: 60
},
http: {
port:8000,
allow_origin: '*',
mediaroot: './media'
},
trans: {
ffmpeg: '/usr/bin/ffmpeg',
tasks: [
{
app: 'live',
hls: 'true',
hlsFlags: '[hls_time=2:hls_list_size=3:hls_flags=delete_segments]'
}
]
}
};
mediaserver.boot(mediaconfig);
}
export { boot };

@ -1,34 +1,13 @@
import NodeMediaServer = require('node-media-server');
import fs = require('fs');
import * as NodeMediaServer from "node-media-server";
import { mkdir } from "fs";
const { exec } = require('child_process');
//initialize configs, eventually grab from runtime config file
const mediaconfig = {
rtmp: {
port: 1935,
chunk_size: 60000,
gop_cache: true,
ping: 30,
ping_timeout: 60
},
http: {
port:8000,
allow_origin: '*',
mediaroot: './media'
},
trans: {
ffmpeg: '/usr/bin/ffmpeg',
tasks: [
{
app: 'live',
hls: 'true',
hlsFlags: '[hls_time=2:hls_list_size=3:hls_flags=delete_segments]'
function initConfig(): void{
;
}
]
}
};
function streamAuth(path: string){
/*function streamAuth(path: string){
if (path.split("/").length > 3){
console.log("[NodeMediaServer] Malformed URL, closing connection.");
return false;
@ -47,10 +26,10 @@ function streamAuth(path: string){
}
console.log("[NodeMediaServer] Stream key ok.");
return true;
}
}*/
const nms = new NodeMediaServer(mediaconfig);
function boot (config: any){
const nms = new NodeMediaServer(config);
nms.run();
@ -86,7 +65,7 @@ nms.on('postPublish', (id, StreamPath, args) => {
//Hook up to postgres DB.
if(true){
console.log('[NodeMediaServer] Initiating recording for ', `id=${id} StreamPath=${StreamPath}`);
fs.mkdir('./media'+StreamPath, { recursive : true }, (err) => {
mkdir('./media'+StreamPath, { recursive : true }, (err) => {
if (err) throw err;
});
let subprocess = exec('ffmpeg -i rtmp://127.0.0.1'+StreamPath+' -vcodec copy -acodec copy ./media'+StreamPath+'/$(date +%d%b%Y-%H%M).mp4',{
@ -99,3 +78,5 @@ nms.on('postPublish', (id, StreamPath, args) => {
}
console.log('[NodeMediaServer] Skipping recording for ', `id=${id} StreamPath=${StreamPath}`);
});
}
export { boot };

@ -1,13 +1,9 @@
{
"compilerOptions": {
"outDir":".",
"outDir":"./build",
"allowJs":true
},
"include":[
"src/**/*"
],
"exclude":[
"node_modules",
"lib"
]
}