Ask a Question related to Macromedia Flash Flashcom, Design and Development.
-
hisheirs #1
Stupid Newbie need help
Good Day ..
I've installed FMS2 ... copied application(ion) into the application folder ..
but any attempt to connect fails .. the uri I'm using is ..
[url]http://192.168.0.10/ion/SharedFiles/Precautions.flv[/url]
any ideas ???
hisheirs Guest
-
Newbie Stupid Problem
Hi All, I'm an expirienced developer in Flash, but recently I was forced to deal with Flash Media Server. I'm quite excited but I have one... -
Im really stupid so please help me
how do i make a loading animation for my site and make it appear when i a page is loading? -
Stupid dreamweaver
Does anyone have the same problem with rollovers as I have? When you put buttons on a page and attach the behaviors, the rollovers stay open, or they... -
Stupid newbie question re website hit counting
Once a month, I run a (mostly perl) script that reads my all my webserver log files and tallies hits to several webpages. However, I have always... -
Stupid Question, but need heLp
I can't insert a background into my fLash form, how do I do it? -
newtoflashcom #2
Re: Stupid Newbie need help
You need to create a Flash swf from where you will access the Video(.flv) file. The url you will be using in the fla will look like rtmp://<IP of FMS>/<appliaction>/<instance>/<stream name>
newtoflashcom Guest
-
hisheirs #3
Re: Stupid Newbie need help
THANKS for the response ..
That's exactly what I have .. a swf w/ a embedded flv player ..
the flv plays fine if I reference it locally .. but for some reason I can not connect to FMS ...
hisheirs Guest
-
hisheirs #4
Re: Stupid Newbie need help
I'm missing something very basic here ...
my client side code is ...
theVid = "rtmp://192.168.0.10/ion/SharedFiles/Precautions.flv"
NetCon = new NetConnection();
NetCon.connect(null);
NetStrm = new NetStream(NetCon);
VidWin.attachVideo(NetStrm);
NetStrm.play(theVid)
if I bypass FMS e.g. theVid = "P:/Program Files/Macromedia/Flash Media Server
2/applications/ion/SharedFiles/Precautions.flv"
it works ...
the FMS management console sees the server .. the application instance .. but
I cannot get the client to connect .. ???
hisheirs Guest
-
newtoflashcom #5
Re: Stupid Newbie need help
Put the following mapping in your Vhost file and try again
<VirtualDirectory>
<Streams>SharedFiles;P:/Program Files/Macromedia/Flash Media Server
2/applications/ion/SharedFiles</Streams>
</VirtualDirectory>
newtoflashcom Guest
-
Vinicius Hacebe #6
Re: Stupid Newbie need help
[Q]I'm missing something very basic here ...
my client side code is ...
theVid = "rtmp://192.168.0.10/ion/SharedFiles/Precautions.flv"
NetCon = new NetConnection();
NetCon.connect(null);
NetStrm = new NetStream(NetCon);
VidWin.attachVideo(NetStrm);
NetStrm.play(theVid)
if I bypass FMS e.g. theVid = "P:/Program Files/Macromedia/Flash Media Server
2/applications/ion/SharedFiles/Precautions.flv"
it works ...
the FMS management console sees the server .. the application instance .. but
I cannot get the client to connect .. ???[/Q]
Take a look man...
if using FMS...
the var "thevid" has incorrect parameters...
in your case that sould be set as "Precautions" (w/o .flv)
the NetCon.connect(null); should be
NetCon.connect("rtmp://192.168.0.10/appName");
but if it's not using FMS you should not use RTMP on the vid variable, but use
HTTP instead!
good luck!
Vinicius Hacebe Guest



Reply With Quote

