用于opencv-plugin-sample的Kurento Media服务器客户端js

时间:2016-03-14 13:13:23

标签: kurento

我的所作所为:

1.我从https://github.com/Kurento/kms-opencv-plugin-sample下载了更新的opencv_plugin-sample。

2.使用cmake-gui运行cmakelist并生成 libkmsopencvpluginsamplemodule.so

我必须做什么:

1.现在我需要编写 kms-client-js ,以便在浏览器中运行opencv-plugin-sample

2.我遵循http://doc-kurento.readthedocs.org/en/stable/mastering/develop_kurento_modules.html

的指示
      cmake .. -DGENERATE_JS_CLIENT_PROJECT=TRUE

3.我使用上面的命令将生成的js文件添加到kurento-crowddetector-client-js,用 index.js <中的OpencvPluginSample.js路径替换kurento-module-crowddetector.js路径/强>

4.当我从客户端路径运行 http-server 时,我收到以下错误

     KurentoClient.js:15 Uncaught ReferenceError: require is not defined
     OpencvPluginSample.js:17 Uncaught ReferenceError: require is not defined
     index.js:64 Uncaught TypeError: Cannot read property 'register' of undefined

5.我需要做些什么来继续前进? 是否有任何文档可以为opencv-plugin-sample生成client-j?

1 个答案:

答案 0 :(得分:2)

您不需要生成 kms-client-js 。从该错误看,您似乎正在向浏览器应用添加节点模块。在将该模块添加到客户端代码之前,您需要browserify该模块。