rtsp-streaming-server icon indicating copy to clipboard operation
rtsp-streaming-server copied to clipboard

Lightweight RTSP/RTP streaming media server written in Javascript

Results 25 rtsp-streaming-server issues
Sort by recently updated
recently updated
newest added

Bumps [undefsafe](https://github.com/remy/undefsafe) from 2.0.2 to 2.0.5. Release notes Sourced from undefsafe's releases. v2.0.5 2.0.5 (2021-10-17) Bug Fixes remove debug and add tests (58fc474), closes #12 Commits 5d3fa34 chore: adding semver...

dependencies

Bumps [path-parse](https://github.com/jbgutierrez/path-parse) from 1.0.6 to 1.0.7. Commits See full diff in compare view [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=path-parse&package-manager=npm_and_yarn&previous-version=1.0.6&new-version=1.0.7)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter...

dependencies

I've cloned the project, did npm i to install the packages and than npm run build to have the output but it doesn't build saying "Successfully compiled 0 files with...

Right now there are a lot of console.log / console.error messages + debug package (with no details how to activate debugging mode in rtsp-streaming-server. Many projects have central logging, like...

I'm running a simple node.js server using **rtsp-streaming-server** code. Server configuration: ` this.server = new RtspServer({ serverPort: 5554, clientPort: 6554, rtpPortStart: 10_000, rtpPortCount: 10_000, });` when the code starts, the...

Bumps [browserslist](https://github.com/browserslist/browserslist) from 4.6.6 to 4.16.6. Changelog Sourced from browserslist's changelog. 4.16.6 Fixed npm-shrinkwrap.json support in --update-db (by Geoff Newman). 4.16.5 Fixed unsafe RegExp (by Yeting Li). 4.16.4 Fixed unsafe...

dependencies

Thanks for sharing, Chris! Here is one detail that may throw off some newbies like me: In addition to your note about javascript (vs. typescript) needing `const RtspServer = require('rtsp-streaming-server').default;`,...

Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.21. Commits f299b52 Bump to v4.17.21 c4847eb Improve performance of toNumber, trim and trimEnd on large input strings 3469357 Prevent command injection through _.template's variable...

dependencies

Bumps [ini](https://github.com/isaacs/ini) from 1.3.5 to 1.3.7. Commits c74c8af 1.3.7 024b8b5 update deps, add linting 032fbaf Use Object.create(null) to avoid default object property hazards 2da9039 1.3.6 cfea636 better git push script,...

dependencies

const server = new RtspServer({ serverPort: 5554, clientPort: 6554, rtpPortStart: 10000, rtpPortCount: 10000, clientServerHooks: function clientClose () { console.log(`A client has disconnected`); } })