- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
要与Java api夹文件一起使用wami记录器。我有带闪光灯的版本,其中包含
index.html如下
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<!-- swfobject is a commonly used library to embed Flash content -->
<script type="text/javascript"
src="https://ajax.googleapis.com/ajax/libs/swfobject/2.2/swfobject.js"></script>
<!-- Setup the recorder interface -->
<script type="text/javascript" src="recorder.js"></script>
<script>
function setup() {
Wami.setup("wami");
}
function record() {
status("Recording...");
Wami.startRecording('http://localhost/audiorecording/test.php?name=demo.mp3');
}
function play() {
Wami.startPlaying("http://localhost/audiorecording/demo.mp3");
alert("It's start playing");
}
function stop() {
status("");
Wami.stopRecording();
alert("stop");
Wami.stopPlaying();
}
function status(msg) {
document.getElementById('status').innerHTML = msg;
}
</script>
</head>
<body onload="setup()">
<input type="button" value="Record" onclick="record()"></input>
<input type="button" value="Stop" onclick="stop()"></input>
<input type="button" value="Play" onclick="play()"></input>
<div id="status"></div>
<div id="wami"></div>
</body>
</html>
<?php
parse_str($_SERVER['QUERY_STRING'], $params);
$name = isset($params['name']) ? $params['name'] : 'output.wav';
$content = file_get_contents('php://input');
$fh = fopen($name, 'w') or die("can't open file");
fwrite($fh, $content);
fclose($fh);
?>
最佳答案
首先让我纠正一些问题:
关于php - 用Java的Wami记录器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10443027/
我正在尝试实现 Wami-Recorder如上所述here on stackoverflow与接受的答案基本相同的设置,即 head 标签中包含的 swfobject.js、recorder.js 和
我是 Wami Recorder 的新手,而且我从来没有使用过 Flash,所以这实际上可能是一个愚蠢的问题。 基本上,如何实现 Wami Recorder?我在网站上看到它,它在那里运行得很好,但是
我对 Wami 录音机有一个非常奇怪的问题。在允许 flash 文件使用我的麦克风后,我尝试录制一个音频剪辑。然而,大多数情况下,并非总是如此,第一次尝试录制时会向服务器传递一个空的音频剪辑。 FLA
我需要我的用户录制语音剪辑。我正在使用 wami-recorder负责客户端的录音。我正在使用默认的 javascript 函数: Wami.startRecording('/upload?name=
我想使用 MIT 的 WAMI API(或其他语音识别 API)和 impress.js 创建语音控制的幻灯片。我想包含简单的命令,例如“下一页”或“返回”。 这可能吗?我该怎么做? 最佳答案 有an
我正在尝试使用 https://code.google.com/p/wami-recorder/ 在浏览器端录制一段声音片段,然后通过 wami 示例和服务器端 Controller 方法上传该文件。
我是一名优秀的程序员,十分优秀!