0

我使用下面的代码来隐藏我的 wordpress 网站的歌曲流 url……这意味着而不是:example.com/audio.mp3 url is example.com/streem.php?id=53502

我已经使用默认的 HTML 5 播放器对其进行了测试,它适用于 chrome 和 IE,但这不适用于此播放器:http: //goo.gl/HziDr

谁能告诉我我的代码可以吗?

streem.php 的代码是:

<?php
require('./wp-config.php');  
$wp->init();  
$wp->parse_request();  
$wp->query_posts();  
$wp->register_globals(); 
$attachmentID = $_GET['id'];
$attachment = get_attached_file( $attachmentID , false );
header("Content-Transfer-Encoding: binary"); 
header('Content-Length: '. (string)filesize($attachment)); // provide file size
header('Content-type: audio/mpeg');
header('Cache-Control: no-cache');
readfile($attachment);
exit;
?>
4

1 回答 1

1

我不认识那个播放器,但它可能不知道内容类型,需要文件扩展名才能工作。你可以追加

'&fmt=.mp3'

到您的网址,看看是否有帮助。您的 PHP 脚本应该忽略该查询参数,但希望播放器会看到 .mp3 扩展名然后工作。

于 2012-04-06T08:49:46.857 回答