- + P A

- 欢迎各位FMS爱好者加入FMSer.CN,群号:17309463

      FMS 2008-11-22 22:58:00
欢迎各位FMS爱好者加入FMSer.CN,群号:17309463
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- FMS3中的实用工具(1)——far.exe

      FMS 2008-10-29 22:26:00

在FMS3的安装目录(如:D:\FMS3\tools)下,有一个名为tools的文件夹,在这个文件夹中,有三个.exe文件和两个.bat文件,这五个文件其实是五个小工具,它们个头虽小,却很实用。

我们先来看第一个小工具,far.exe。

far.exe主要有两个功能,一是可以编译服务器端的.asc文件为.ase文件,以提高FMS应用程序的访问速度;二是可以将分散的服务器端文件打成包,集中到一起方便管理。

far.exe的用法如下:

far -[compile|package|help]

其中的三个可选项分别对应编译、打包、帮助三个功能。

1、编译

该功能最简单的使用方法如下:

far -compile 1.asc

在dos状态运行后,会生成一个名为1.ase的字节码文件。

如果有多个.asc文件需要编译,这几个.asc文件之间可以用空格隔开,如:

far -compile 1.asc 2.asc 3.asc

此外,far -compile 还可以跟其它的参数:

far -compile
            [-v <version>]                     //ase的版本,当前为1.0
       

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 利用FMS传图片

      FMS 2008-8-6 16:38:00

FMS3新增了一个非常有用的功能,那就是支持ByteArray,这个功能让许多梦想成为现实,如传递自定义表情,传递文件等等。

标签集:TAGS:FMS3 AIR ByteArray BitmapData AS3
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- FMS带宽计算器

      FMS 2008-7-22 0:56:00

注:bitRate表示单位时间(1秒)内传送的比特数(bps)。

标签集:TAGS:FLV BitRate 计算器 FMS带宽 FMS带宽计算 FMS4
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- Peer to Peer (P2P) in Flash Player 10 beta

      FMS 2008-5-27 13:47:00

让人激动的FP10支持的P2P:

There has been a lot of great excitement around RTMFP (Real Time Media Flow Protocol), especially because of the peer to peer (P2P) communication that is enabled in Flash Player 10 beta. This is a natural time to speculate about what cool applications you will build with new technology, so I’d like to give you some more information for you to work with.

Since I have been frequently been asked about details on this, a frequently asked questions format somehow seemed appropriate ;). For those that want to start working with RTMFP, make sure to read to the end, there is a goody for you!

Does Flash Pl

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- RTMFP in Flash Player 10 beta

      FMS 2008-5-27 13:45:00

FP10支持的新协议RTMFP让P2P成为现实,下面这段文字转自http://justin.everett-church.com/

There have been some comments on other blogs about the new RTMFP protocol that is part of the Flash Player 10 beta and potential for how it will be used. Please keep in mind that while we have announced the features, we haven’t announced all of the details yet.

The new RTMFP protocol in Flash Player 10 provides an alternative to RTMP allowing customers to develop real-time communication applications with an improved user experience. Applications like chat and games are great examples of what you are likely to see make use of this technology. This new protocol has been designed for communication solu

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 在FMS服务器端侦听流的发布

      FMS 2008-5-21 9:57:00

FMS3新增了一个非常有用的侦听事件,那就是application.onPublish,利用这个事件,可以很方便的把刚刚发布的流发布到其它服务器上,从而达到偷窥MM的目的:

使用方法如下:

application.onPublish = function(client, myStream) {
             nc = new NetConnection();
              nc.connect("rtmp://10.0.199.5/multiPointPub");
               ns = new NetStream(nc);
               ns.attach(myStream);
       

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 如何配置和使用边缘服务器

      FMS 2008-5-21 9:48:00

最近很多人都在问这个问题,我说一下大致思路。

边缘服务器的配置很简单,只要修改配置文件Vhost.xml就可以了,这个配置文件的具体路径是:FMS3安装目录\conf\conf\_defaultRoot_\_defaultVHost_\Vhost.xml,用记事本打开这个文件,作如下修改:

1、找到<Proxy>节点,修改Mode属性为remote,即:

                  <Mode>remote</Mode>

标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- FMS3来了...

      FMS 2008-1-27 17:26:00

FMS3跟其它的Adobe产品一样,个头越来越大,吃的越来越多:

支持的操作系统:

Microsoft® Windows Server® 2003 SP1 (All 32-bit editions)
Linux® Red Hat® 4 (32-bit only)

标签集:TAGS:FMS3 flash视频聊天
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 在多台FMS服务器之间共享流

      FMS 2007-10-7 0:14:00

FMS有一个非常重要的功能,那就是可以在多台服务器之间共享流.

利用这一功能,我们可以把源服务器上的流分发到其它的服务器,这些获得流的服务器同样可以作为新的源服务器使用.这个功能有点象FMS集群.

我们都知道,利用WMP插件可以获取网上的流媒体地址制作网络电视台,其实利用Flash和FMS同样也可以实现.

在一台服务器上采集电视信号,然后将采集的流PUB到IP为127.0.0.1的一个APP(假设是:tvSet)内,假设该流的名称为"cctv1",

这样,连接到该服务器的FP客户端可以很轻易地获取该流.但连接数一多,服务器可能就会负担过重,这时就要开始考虑分流.

分流的方案至少有两种,一种是利用代理服务器,一种就是我们要说的在多台服务器之间共享流了.

那怎样把流分发下去呢?

这第一台源服务器不用再做任何事情,它只负责接收和PUB电视信号好了,我们另找一台服务器,在FMS应用程序的main.asc中写入以下代码:

//程序启动时执行
application.onAppStart = function() {
 this.myNC= new NetConnection();  
 this.myNC.onStatus = NC_onStatus;
 this.myNC.connect("rtmp://第一台源服务器的地址/tvSet"); 
};

function NC_onStatus(info){  

标签集:TAGS:FMS
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 再谈FMS集群

      FMS 2007-8-8 22:14:00

 利用FMS集群技术可以大大减轻源服务器的负担,特别是对于Store类型的视频,从管理界上面看,在采用集群方式播放Store类型的视频时,源服务器基本没什么明显变化。

FMS集群技术的实现大致分为两种:一种是利用Adobe官方提供的配置文件进行配置,另一种是自己在Server端写代码配置。利用配置文件进行配置的优点是简单,但对于Live类应用就不太适合了;而在Server端写代码实现集群,这种方法更加灵活,更适合于Live类的应用。

具体采用哪种方法,要看实际项目的需要而定。

下面是连接数为11时的源和缘服务器的比较图:

两台服务器的CPU占用率仅达7%左右,而源服务器的带宽消耗很小,仅仅一台边缘的服务的带宽占用起伏比较大,但占用也不是太多.

注意:上面是向服务器发布LIVE流时的情形.

标签集:TAGS:FMS 集群
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 配置边缘服务器的注意事项

      FMS 2007-7-24 18:47:00
 

配置边缘服务器时要注意:

边缘服务器的Server.xml中的AutoDiscoveryEnable值应设为true,而源服务器恰恰相反。

如果在源服务器上放置了FLV,如:applications/appname/videos/streams 标签集:TAGS:边缘服务器

我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- Flash9中使用as3.0的call方法调FMS端函数

      FMS 2007-2-28 0:02:00
var fmsIP:String = "127.0.0.1";
var fmsPath:String = "rtmp://"+fmsIP+"/as3test/";
var myNC:NetConnection = new NetConnection();
var callResponder:Responder = new Responder(getResult);
myNC.objectEncoding = ObjectEncoding.AMF0;
myNC.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
function netStatusHandler(event:NetStatusEvent):void {
 switch (event.info.code) {
  case "NetConnection.Connect.Success":
  trace("连接成功!")
  myNC.call("msgFromClient",callResponder,"这是传给服务器的信息");
  break; 
  }
  }
myNC.connect(fmsPath)
function getResult(msg:String):void{
 trace("从服务
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- AS3.0连接FMS2.0测试

      FMS 2007-1-25 0:56:00

var fmsIP:String = "127.0.0.1";
var fmsPath:String = "rtmp://"+fmsIP+"/audioOnLine_fms/";
var myNC:NetConnection = new NetConnection();
myNC.objectEncoding = ObjectEncoding.AMF0;
myNC.addEventListener(NetStatusEvent.NET_STATUS, netStatusHandler);
myNC.addEventListener(SecurityErrorEvent.SECURITY_ERROR,

...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()

- 我的一个FMS集群均衡负载方案

      FMS 2006-12-14 21:49:00
要搞大型的FMS视频语音应用(譬如:视频聊天、视频会议),就目前的情况而言,必须使用FMS集群以实现均衡负载,网上关于这方面的资料很少,并且很多只是简单描述,让人摸不着头脑,下面是我为某个项目制定的一个集群方案,现在抛出来跟大家交流一下,您如果有更好的方案,请跟贴讨论: ...
标签集:TAGS:
我要留言To Comment 阅读全文Read All | 回复Comments() 点击Count()
深度XP 雨林木风XP WinXP下载 世界之窗 深度系统 雨林木风 Ghost ghost系统盘 XP下载