-
Notifications
You must be signed in to change notification settings - Fork 562
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
MediaStreamRecorder.js major updates.
1) recorderType added. 2) pause method added 3) resume method added 4) save method added 5) Travis/Grunt support added. Also, Microsoft Edge support added in all demos. Currently audio-recorder.html will merely work in Edge: https://www.webrtc-experiment.com/msr/audio-recorder.html Issue #52 is partially fixed.
- Loading branch information
Showing
36 changed files
with
4,020 additions
and
2,663 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# Node | ||
node_modules | ||
|
||
# bower | ||
bower_components |
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,26 @@ | ||
{ | ||
"browser": true, | ||
"camelcase": true, | ||
"curly": true, | ||
"devel": true, | ||
"eqeqeq": true, | ||
"forin": false, | ||
"globalstrict": true, | ||
"quotmark": "single", | ||
"undef": true, | ||
"globals": { | ||
"MediaStreamRecorder": true, | ||
"ObjectStore": true, | ||
"StereoAudioRecorder": true, | ||
"CanvasRecorder": true, | ||
"WhammyRecorder": true, | ||
"Whammy": true, | ||
"GifRecorder": true, | ||
"AudioContext": true, | ||
"URL": true, | ||
"IsChrome": true, | ||
"bytesToSize": true, | ||
"FileReaderSync": true, | ||
"postMessage": true | ||
} | ||
} |
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,3 @@ | ||
node_modules | ||
lib-cov | ||
npm-debug.log |
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,10 @@ | ||
language: node_js | ||
node_js: | ||
- "0.11" | ||
install: npm install | ||
before_script: | ||
- npm install grunt-cli | ||
- npm install grunt | ||
- grunt | ||
matrix: | ||
fast_finish: true |
Oops, something went wrong.