类型错误:无法读取未定义的属性“url” - ws

时间:2021-07-28 05:17:14

标签: node.js ffmpeg ws

我正在尝试获取以“/rtmp/”开头的 URL,并提取目标 RTMP URL。

未捕获的类型错误:无法读取未定义的属性“url”

这是我的 server.js

  let match
  if (!(match = req.url.match(/^\/rtmp\/(.*)$/))) {
    ws.terminate() // No match, reject the connection.
    return
  }

  

0 个答案:

没有答案