forked from muaz-khan/WebRTC-Experiment
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated from @rjmackay and socektio-over-nodejs.
Merged-all and closed muaz-khan#238, closed muaz-khan#239, closed muaz-khan#240, and closed muaz-khan#241
- Loading branch information
Showing
21 changed files
with
912 additions
and
424 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"name": "recordrtc-socketio", | ||
"preferGlobal": true, | ||
"version": "1.0.5", | ||
"author": { | ||
"name": "Muaz Khan", | ||
"email": "[email protected]" | ||
}, | ||
"description": "Records audio/video separately as wav/webm. Emits both files using socket.io. Socket.io server end receives emitted data; and writes wav/web files to disk. Node.js code invokes ffmpeg to merge wav/webm in single webm file. Socket.io server emits merged event; and passes-back the URL of the merged file", | ||
"contributors": [ | ||
{ | ||
"name": "Muaz Khan", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"scripts": { | ||
"start": "node server.js" | ||
}, | ||
"main": "./server.js", | ||
"repository": { | ||
"type": "git", | ||
"url": "https://github.com/muaz-khan/WebRTC-Experiment.git" | ||
}, | ||
"keywords": [ | ||
"webrtc", | ||
"javascript", | ||
"RecordRTC", | ||
"socket.io", | ||
"Node.js", | ||
"ffmpeg", | ||
"audio-recording", | ||
"video-recording", | ||
"gif-recording", | ||
"audio/video recording", | ||
"webp", | ||
"webm", | ||
"wav" | ||
], | ||
"analyze": false, | ||
"license": "MIT", | ||
"engines": { | ||
"node": ">=0.6" | ||
}, | ||
"dependencies": { | ||
"socket.io": "^1.0.6", | ||
"fluent-ffmpeg": "^1.7.2", | ||
"node-uuid": "^1.4.1" | ||
}, | ||
"readmeFilename": "README.md", | ||
"bugs": { | ||
"url": "https://github.com/muaz-khan/WebRTC-Experiment/issues" | ||
}, | ||
"homepage": "https://github.com/muaz-khan/WebRTC-Experiment/tree/master/RecordRTC/RecordRTC-to-Nodejs", | ||
"_id": "[email protected]", | ||
"_from": "recordrtc-socketio@" | ||
} |
Oops, something went wrong.