| Su | Mo | Tu | We | Th | Fr | Sa |
|---|---|---|---|---|---|---|
| 1 | 2 | 3 | ||||
| 4 | 5 | 6 | 7 | 8 | 9 | 10 |
| 11 | 12 | 13 | 14 | 15 | 16 | 17 |
| 18 | 19 | 20 | 21 | 22 | 23 | 24 |
| 25 | 26 | 27 | 28 | 29 | 30 | 31 |
FMS/FlashCom
Flash screen sharing...
新建一文本框,命名为:txt,在第一帧加入以下代码:
txt=System.capabilities.hasScreenBroadcast
发布。。。
将发布好的swf文件分别拖到普通的Player与breezeaddin你会看到不同的结果。。。
也就是说,普通的Player是不具备捕获桌面视频功能的。。。
利用FCS做视频录制的带宽需求
其大致的算法是:
视频宽度 x 视频高度 x 播放速率 (fps) = 总的带宽( bits/sec)
但是要注意的是,在使用FCS录制的时候,使用的是Bps,而不是kbps,要转换(8 bits =1 byte )
打开比方,使用320×240的视频窗口以30fps的速率录制,其带宽消耗计算:
320 x 240 x 30 fps = 2.3 Mbps = 288,000 Bps
Breeze Screen Share
Yes, of course.
The code is taken from the error from FlashComm help. When MM released
FCS they forgot to delete the help about screensharing, it's not indexed
but if you click next arrow continuosly you'll find some pages that are
not on the index:
<code>
var cam = Camera.get("Screen");
video_instance.attachVideo(cam);
</code>
If you compile this you'll get a compiler error. Just compile for AS1 or
change the intrinsic class of Camera. Change the line:
<code>
有关FMS(FCS)设置
有关FMS(FCS)设置
(转载自闪客帝国)
[原文出处]
http://www.adobe.com/devnet/flashcom/articles/opt_videoconf.html
关于桌面共享
用过Breeze的朋友都知道,它是支持screenSharing的,那它又是如何工作的呢?
通过查找资料,笔者对此有了一些了解,今天写出来,与大家分享。。。
第一步,下载BreezeAddIn播放器,代码如下:
myDownLoad = new System.Product("BreezeAddIn");
myDownLoad.download();
Protecting FMS Apps from Free Loaders
From Peldi:
Peldi wrote on July 25, 2003: If someone finds out the name of your flashcom server and of one of your app, they can host your swf on their web servers and claim your app as their own; believe it or not, it happened to my PPhone app. :(
There are two ways to protect your apps from this hack:
1.If you have access to your VHost.xml file, use the "Allow" tag to specify your web server's domain, as described in the Managing_Flashcom PDF on macromedia.com: The <Allow> tag lets you specify domain names from which client applications should be allowed to connect to this virtual host. The default value is all, which allows connections from any domain. If no value is specified, only connections from the domain that is being connected to are allowed. If you list specific domains in this tag, only connections from those domains are allowed. Separate each domain name in the list with a comma.
FMS Installation on CentOS 64 bit
OpenOffice PPT to SWF conversion
The macro opens the ppt document and converts each slide to an .sxi file (OO's native presentation format). The reason for this step is that I've found OO does a better job of interpreting the vectors from an sxi file as opposed taking them from the ppt. The macro then converts each of the .sxi files to an individual .swf, and deletes the .sxi
The macro also collects slide titles, and writes them to an XML file in the destination directory (described below) along with the slide .swf's
The macro is expecting the following input variables

Recent comments