嗨,我正在使用此代码流式传输 rtmp:
<?php
$url = $node->field_url[0]['value'];
$config = array(
'clip' => array(
'autoPlay' => $autoplay,
'url' => 'myfile.flv',
'provider' => 'rtmp',
),
'plugins' => array(
'rtmp'=>array(
'netConnectionUrl' => 'rtmp://myserver',
'url' => 'flowplayer.rtmp.swf'
)
),
);
print theme('flowplayer', $config);
?>
这段代码不起作用,什么也没显示?
请帮我