Ask a Question related to Macromedia Flash Flashcom, Design and Development.
-
graphite12 #1
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.
graphite12 Guest
-
publish H.264 live stream
Hi all, I'm currently trying Flash Media Server 3.0 with CS3 and Flash Player 9.0.115. Our goal is to implement a videoconferencing application... -
using netStream.time on rtmp live stream(broadcaster!=receiver)
I am trying to synchronize a live stream (which is broadcasted from the flash player plugin) with some scripted actions. The problem is, that the... -
Problem with recording a live-stream
Hello Adobe communtiy, we are developing an online application where our users can send the output of their videocard live into the internet.... -
progressive stream (RTMP)
Hi everyone, glad to be back into flash programming, was side tracked for quite awhile. I'm currently trying to stream a simple mp3. here's... -
stream an external flv via rtmp
hi. i want to stream external flvs with fcs, but it is not possilbe for me to tell fcs where to get these external flvs. running external flvs... -
JayCharles #2
Re: Problem trying to publish live stream to RTMP
If I'm understanding you correctly, you want to take a stream that resides on
server "A", and publish it to server "B".
If that's the case, you need to make a netconnection to server "A" in the .asc
on server "B", just like you would in client side actionscript.
JayCharles Guest
-
graphite12 #3
Re: Problem trying to publish live stream to RTMP
Thanks for the advice. This solution would work for us as well but
unfortunately the operator of server B wants to get an rtmp link the asc
solution does not work. They need to solve this by doing a simple RTMP request
using the FLV playback component.
But for some reason we are unable to get the RTMP link working only the asc
solution seems to work. Im wondering what should we do different to get the
rtmp work as the asc works now. If you have any ideas please do not hold it
back. Thanks!
graphite12 Guest
-
jrulison #4
Re: Problem trying to publish live stream to RTMP
That is because the server who is trying to pull needs to be the subscriber of
second server the quickest way to do that is the RTMP string. I am trying to
use your code now to subscribe to the stream Gyula maybe it would help if we
use a test stream that has a constant feed one that you can send me the link on
your site so I know its up.
James
jrulison Guest



Reply With Quote

