我的任务是在页面上嵌入一个MP3播放器,播放一些存储在数据库中的语音消息。有些消息以WAV格式存储,因此必须将它们转换为mp3。转换应该“在飞行中”完成。由于并非所有消息都必须转换,我决定使用将在需要时使用的流过滤器。
class LameFilter extends php_user_filter
{
protected $process;
protected $pipes = array();
public function onCreate() {
$descriptorspec = array(
0 => array("pipe", "r"),
1 => array("pipe", "w"),
//2 => array("pipe", "w"),
);
$this->process = proc_open('lame --cbr -b 128 - -', $descriptorspec, $this->pipes);
}
public function filter($in, $out, &$consumed, $closing) {
while ($bucket = stream_bucket_make_writeable($in)) {
fwrite($this->pipes[0], $bucket->data);
$data = '';
while (true) {
$line = fread($this->pipes[1], 8192);
if (strlen($line) == 0) {
/* EOF */
break;
}
$data .= $line;
}
$bucket->data = $data;
$consumed += $bucket->datalen;
stream_bucket_append($out, $bucket);
}
return PSFS_PASS_ON;
}
public function onClose() {
//$error = stream_get_contents($this->pipes[2]);
fclose($this->pipes[0]);
fclose($this->pipes[1]);
//fclose($this->pipes[2]);
proc_close($this->process);
}
}
/* Register our filter with PHP */
stream_filter_register("lame", "LameFilter")
or die("Failed to register filter");
$mp3 = fopen("result.mp3", "wb");
/* Attach the registered filter to the stream just opened */
stream_filter_append($mp3, "lame");
$wav = fopen('ir_end.wav', 'rb');
while (!feof($wav)) {
fwrite($mp3, fread($wav, 8192));
}
fclose($wav);
fclose($mp3);
在示例中,我使用了从一个文件中读取并写入另一个文件。但实际上数据是从OCI-lob读取的,必须写入STDOUT。
问题是该行“$ line = fread($ this-> pipes [1],8192);”实际上在预期的数据长度上独立地阻止脚本。
有没有正确的方法来读取不关闭STDIN的进程?
答案 0 :(得分:0)
作为此解决方案的替代方案,您是否考虑将BLOB保存到临时文件并使用lame转换临时文件,以便您可以使用popen()来回传结果?