Skip to content

Commit

Permalink
MediaStreamRecorder.js major updates.
Browse files Browse the repository at this point in the history
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
muaz-khan committed Sep 19, 2015
1 parent da39a50 commit 667aad7
Show file tree
Hide file tree
Showing 36 changed files with 4,020 additions and 2,663 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Node
node_modules

# bower
bower_components
26 changes: 26 additions & 0 deletions .jshintrc
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
}
}
3 changes: 3 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
lib-cov
npm-debug.log
10 changes: 10 additions & 0 deletions .travis.yml
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

0 comments on commit 667aad7

Please sign in to comment.