Question
Problem trying to publish live stream to RTMP
We are having a rather silly problem, I know its probably
very easy to resolve but still it is giving us a headache.
We have an FMS that takes live feeds from webcams and plays them back through a webpage using the following code:
nc = new NetConnection();
nc.onStatus = function(info) {
trace('I:'+info.code);
if (info.code == 'NetConnection.Connect.Success') {
ns = new NetStream(nc);
video.attachVideo(ns);
ns.play('channel12');
}
};
nc.connect('rtmp://FMSIP/shopVideo/_definst_');
We would now need to push this feed over to another FMS by publishing the feed on an RTMP address.
We were under the impression that the following should work:
rtmp://FMSIP/shopVideo/_definst_/channel12
but is does not work, even if we try it from our own FMS. Checked firewall and stuff that does not seem to be a problem. Are we missing something painfully basic? Please advise any help is greatly appreciated.
We have an FMS that takes live feeds from webcams and plays them back through a webpage using the following code:
nc = new NetConnection();
nc.onStatus = function(info) {
trace('I:'+info.code);
if (info.code == 'NetConnection.Connect.Success') {
ns = new NetStream(nc);
video.attachVideo(ns);
ns.play('channel12');
}
};
nc.connect('rtmp://FMSIP/shopVideo/_definst_');
We would now need to push this feed over to another FMS by publishing the feed on an RTMP address.
We were under the impression that the following should work:
rtmp://FMSIP/shopVideo/_definst_/channel12
but is does not work, even if we try it from our own FMS. Checked firewall and stuff that does not seem to be a problem. Are we missing something painfully basic? Please advise any help is greatly appreciated.
