与java的wami录音机

时间:2012-05-04 05:12:12

标签: php javascript flash audio

要使用wami记录器和java api,需要使用文件。我有它的闪光版本包含 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文件

<?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);
      ?>

swfobject.js可在线获取 另一个可以在线获取recoder.js和gui.js

https://wami-recorder.googlecode.com/hg/example/client/index.html

上面的事情是通过使用闪光灯来完成的,但它在点击按钮时不能在所有电脑上工作我收到了错误,因为相应的功能不可用, 瓦米没有定义 Wami.setup( “瓦米”); PLZ帮助我摆脱它或我看到wami的官方网站,他们指定2008年的发布,这是依赖于java但我无法找到如何使用它,如果你有任何想法,所以PLZ回复..... ..

1 个答案:

答案 0 :(得分:0)

首先让我纠正一些事情:

  • JavaScript ,而不是Java。 Javascript是浏览器中使用的脚本语言,Java是一种C#语言,主要用于在(硬件)平台上的兼容性。
  • 依赖于jQuery。
  • 如果要在localhost上进行测试,请确保服务器正在侦听PHP解释器(IIS / Apache等)。

现在回答你的“问题”:

https://wami-recorder.googlecode.com/hg/example/client/index.html此页面涵盖了所有基础知识。

  • 包含SWFObject
  • 包括recorder.js
  • 包括gui.js(!)你错过了这个

现在将找到WAMI.setup函数,该函数位于gui.js内。

现在你很高兴:)。