Red5 서버 학습 (1) 스 트림 미디어 서비스 구축 - 계속
3495 단어 JavaScriptXHTMLFlexFlashAdobe
<?xml version="1.0" encoding="utf-8"?>
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="320" minHeight="200"
applicationComplete="init()">
<fx:Script>
<![CDATA[
import mx.core.FlexGlobals;
public function init() : void {
var vWidth:int;
var vHeight:int;
vWidth = parseInt( FlexGlobals.topLevelApplication.parameters.videoWidth );
vHeight = parseInt( FlexGlobals.topLevelApplication.parameters.videoHeight );
if ( vWidth > 0 )
myPlayer.width = vWidth;
if ( vHeight > 0 )
myPlayer.height = vHeight;
myPlayer.autoPlay = parseInt( FlexGlobals.topLevelApplication.parameters.videoAutoPlay );
myPlayer.source = FlexGlobals.topLevelApplication.parameters.videoFullName;
}
]]>
</fx:Script>
<s:VideoPlayer id="myPlayer" x="0" y="0" width="320" height="200" autoPlay="false" scaleMode="zoom" loop="true"/>
</s:Application>
FlashVars 매개 변수 지원 이 추가 되 어 페이지 에서 재생 매개 변 수 를 전송 할 수 있 습 니 다.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
<head>
<style type="text/css" media="screen">
html, body, #containerA, #containerB { height:100%; }
body { margin:0; padding:0; overflow:hidden; }
</style>
<title>Test</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<script type="text/javascript" src="assets/swfobject.js"></script>
<script type="text/javascript">
var flashvars = {
videoFullName : "rtmp://localhost/myvod/test.flv",
videoAutoPlay : "1",
videoWidth : "600",
videoHeight : "400"
};
swfobject.embedSWF("hello.swf", "myContent", "100%", "100%", "10.0.0", "assets/expressInstall.swf",flashvars);
</script>
</head>
<body>
<div id="myContent">
<h1>You need the Adobe Flash Player for this demo, download it by clicking the image below.</h1>
<p><a href="http://www.adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
</div>
</body>
</html>
* swfobject. js http://code.google.com/p/swfobject/
현재 RED 5 와 Flex 에 대한 사용 과 이해 도 이것 밖 에 없습니다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
기초 정리 - 1문자 (String) 숫자 (Number) 불린 (Boolean) null undefined 심볼 (Symbol) 큰정수 (BigInt) 따옴표로 묶어 있어야 함 Not-A-Number - 숫자 데이터 / 숫자로 표...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.