用于 opencv-plugin-sample 的 Kurento Media server client-js

Kurento Media server client-js for opencv-plugin-sample

我是做什么的:

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

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

我要做的事情:

1.Now 我需要为 opencv-plugin-sample 编写 kms-client-js 到浏览器 运行

2.I 按照 http://doc-kurento.readthedocs.org/en/stable/mastering/develop_kurento_modules.html

的说明进行操作
      cmake .. -DGENERATE_JS_CLIENT_PROJECT=TRUE

3.I手动将上述命令生成的js文件添加到kurento-crowddetector-client-js中,将kurento-module-crowddetector.js路径替换为OpencvPluginSample.js路径在 index.js

4.When 我 运行 来自客户端路径的 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.What我要做什么才能前进? 是否有任何文档可以为 opencv-plugin-sample 生成客户端 js?

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