0

以下は私のconfig.phpです

<?php
$CONFIG['music_dir'] = './music/anak-ayam.mp3';
$CONFIG['encoder_path'] = 'lame.exe';
$CONFIG['bitrate'] = '64';
$CONFIG['server_name'] = 'Test Shoutcast Server';
$CONFIG['server_genre'] = 'Random';
$CONFIG['server_url'] = 'http://localhost:45401/';
$CONFIG['server_public'] = '0';
$CONFIG['metadata_interval'] = '8192';

以下は私のrun.phpです

<?php // $Id$

require 'config.php';
require 'server.php';
require 'shoutcast.php';
require 'audiosource.php';
require 'http.php';

set_time_limit(0);

$Server = new Server();

$AudioSource = new AudioSource();
$AudioSource->bitrate = $CONFIG['bitrate'];
$AudioSource->encoder = $CONFIG['encoder_path'];
$AudioSource->metadata_interval = $CONFIG['metadata_interval'];
$AudioSource->populate_playlist($CONFIG['music_dir']);
$AudioSource->open_next_file();

$Shoutcast = new Shoutcast();
$Shoutcast->server = &$Server;
$Shoutcast->source = &$AudioSource;
$Shoutcast->metadata_interval = $CONFIG['metadata_interval'];
$Shoutcast->server_name = $CONFIG['server_name'];
$Shoutcast->server_genre = $CONFIG['server_genre'];
$Shoutcast->server_url = $CONFIG['server_url'];
$Shoutcast->server_public = $CONFIG['server_public'];
$Shoutcast->hook_to_server();

$HTTP = new HTTP();
$HTTP->server = &$Server;
$HTTP->shoutcast = &$Shoutcast;
$HTTP->hook_to_server();

$Server->listen();

私は Windows 7 で実行しています。スクリプトを実行しようとすると、次のような出力が得られます。

c:\xampp\htdocs\shoutcast>php run.php
Playing:

期待される出力は

c:\xampp\htdocs\shoutcast>php run.php
Playing: anak-ayam.mp3

独自のオンライン ラジオ サーバーを作成したいのですが、助けてください。これを解決するにはどうすればよいですか?

4

1 に答える 1

0

mp3Windowsを使用しているため、からのパスを変更できますか

$CONFIG['music_dir'] = './music/anak-ayam.mp3';

のようなものに

$CONFIG['music_dir'] = 'C:/music/anak-ayam.mp3';
于 2013-06-03T04:13:59.010 に答える