We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
while running node.js file using node app.js getting Cannot find module 'videoStream' (installed ffmpeg) code: const Stream = require('videoStream')
const options = { name: 'streamName', url: 'rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov', port: 5000 }
stream = new Stream(options)
stream.start()
The text was updated successfully, but these errors were encountered:
@ankit2016 Try changing:
const Stream = require('videoStream')
to
const Stream = require('node-rtsp-stream-es6')
Sorry, something went wrong.
It seems that the description on npmjs.com is still wrong: https://www.npmjs.com/package/node-rtsp-stream-es6 const Stream = require('videoStream')
No branches or pull requests
while running node.js file using node app.js getting Cannot find module 'videoStream'
(installed ffmpeg)
code:
const Stream = require('videoStream')
const options = {
name: 'streamName',
url: 'rtsp://184.72.239.149/vod/mp4:BigBuckBunny_115k.mov',
port: 5000
}
stream = new Stream(options)
stream.start()
The text was updated successfully, but these errors were encountered: