Added video-broadcast path to RTP->RTMP transcoder

Will turn that into a parameter later
This commit is contained in:
prlanzarin 2017-07-06 16:17:29 +00:00
parent a9bbdd11aa
commit 4b0b155d53

View File

@ -295,7 +295,8 @@ public class VideoTranscoder extends UntypedActor implements ProcessMonitorObser
//Generate video stream name
videoStreamName = generateVideoStreamName(type);
outputLive = "rtmp://" + destinationIp + "/video/" + meetingId + "/"
// TODO make stream path dynamic by turning it into a param
outputLive = "rtmp://" + destinationIp + "/video-broadcast/" + meetingId + "/"
+ videoStreamName+" live=1";
output = videoStreamName;