顯示具有 html 標籤的文章。 顯示所有文章
顯示具有 html 標籤的文章。 顯示所有文章

2014年4月9日 星期三

red5 live streaming

1. 安裝 jdk 6 update 45

2. 設定 環境變數
   (1)JAVA_HOME c:\Program Files\Java\jdk1.6.0_45
   (2)PATH %JAVA_HOME%\bin
   (3)CLASSPATH .;%JAVA_HOME%\lib;%JAVA_HOME%\tools.jar;

3.安裝 red5 1.02 安裝過程需設定 IP 位置 及 port 5080

4.防火牆開啟 port 80,5080,1935

5.啟動red5 service

6.安裝admin demo模組(監看上線人數) 從http://your_ip:5080/installer選擇安裝

7.安裝 adobe flash media live encoder 3.2
  FMS URL 設定為:rtmp://your_ip/live

8.web伺服器放置 live.htm 及 StrobeMediaPlayback.swf
  (1)live.htm 需修改 red5 server 的 ip 位置(兩處)

相關檔案下載:download

2012年11月30日 星期五

checkbox 多重選取

test.php
<?php
if($_POST["test"])
  foreach($_POST["test"] as $var) echo $var."|";
print_r($_POST["test"]);
?>
<form name="form" method="post" action="test.php">
<input type=checkbox name=test[] value=001>001<br />
<input type=checkbox name=test[] value=002>002<br />
<input type=checkbox name=test[] value=003>003<br />
<input type=checkbox name=test[] value=004>004<br />
<input type=checkbox name=test[] value=005>005<br />
<input type="submit" value="submit">
</form>

2011年12月28日 星期三

form 空白問題

表格中填入form表單時,在form結束的地方會多出一行空白。
在form標籤中加入
style="display:inline"
可以解決這個問題