You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
505 B
20 lines
505 B
5 years ago
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>RTMP Publisher</title>
|
||
|
<script type="text/javascript" src="swfobject.js"></script>
|
||
|
<script type="text/javascript">
|
||
|
var flashVars = {
|
||
|
streamer: 'rtmp://localhost/myapp',
|
||
|
file:'mystream'
|
||
|
};
|
||
|
swfobject.embedSWF("RtmpPublisher.swf", "rtmp-publisher", "640", "480", "9.0.0", null, flashVars);
|
||
|
</script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="rtmp-publisher">
|
||
|
<p>Flash not installed</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
</html>
|