Ask a Question related to Macromedia Dynamic HTML, Design and Development.
-
AKsteve #1
live stream
Hi,
I need to take a URL for a live stream and have it pop up in a designated
media player.
For instance, the QuickTime stream will be coming from:
rtsp://catstream1.cat.uaf.edu/ruralhealth.sdp
I will have a link on a webpage that should open the QT player and start
playing the live feed from the above URL.
(I also have to do this with windows media from another URL.)
Anyone know how to do this?
Steve
AKsteve Guest
-
Record live stream with different name
Hi all! I have a live streaming application running with FMS2 and I have come across an issue with recording streams. My application allows a... -
Buffering of Live Stream
Hey guys, I noticed whenever my FME's connection to the FMS get laggy, the FME seems to buffer the stream. The streaming service hence becomes 'not... -
can stream LIVE, but can't stream FLV -=
Hi there. Pulling out my hair...and i'm bald enough already! I built a FLA that streams live from the FME - works great. Cannot for the life... -
Embed live cue data in live stream?
I am currently using the new FME to encode live to a FMS. Both applicatioins are running on the same machine. Is there a way to embed live cue and... -
LIVE stream using FCS
Hi, I have FCS 1.5 I also have FMS (which isn't installed yet) I want to deliver LIVE streams. I'm new to this era so I have some questions:... -
rethor #2
Live stream
Hi,
I have FMS2, Flash 8 and this client-side code:
var client_nc:NetConnection;
var out_ns:NetStream;
var in_ns:NetStream;
emisor_cam = Camera.get();
emisor_video.attachVideo(_root.emisor_cam);
function doConnect() {
client_nc = new NetConnection();
client_nc.onStatus = function(info) {
trace("Level: " + info.level + " Code: " + info.code);
}
client_nc.connect("rtmp://loca lhost/videochat/" + _level0.sid);
}
function publishMe() {
out_ns = new NetStream(_root.client_nc);
out_ns.attachVideo(_root.emiso r_video);
out_ns.publish(_level0.eid);
}
function playMe() {
in_ns = new NetStream(_root.client_nc);
receptor_video.attachVideo(in_ ns);
in_ns.play(_level0.rid);
}
// Connect to the server
doConnect();
// Publish the live stream
publishMe();
// Play back the stream from the server
playMe();
Modified from a sample. I run two web pages with this flash where _level0.sid
is the room id, and _level0.eid and _level0.rid are crossed values.
I see at FMS Admin that the two users connect to the same instance and that
they publish and play the streams, but they can only view their published
strem. They cannot view the in_ns stream.
This worked fine with FCS. What's the matter?
rethor Guest
-
rethor #3
Re: Live stream
And why this is not recording anything?:
out_ns.publish(_level0.eid,"record");
It appears as Live Stream at Admin Console.
rethor Guest
-
rethor #4
Re: Live stream
Ok, I found the stupid error
out_ns.attachVideo(emisor_cam);
Instead
out_ns.attachVideo(emisor_video);
rethor Guest



Reply With Quote

