├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── CONTRIBUTING.md ├── Canvas-Recording ├── Canvas-Animation-Recording-Plus-Microphone-Plus-Mp3.html ├── Canvas-Animation-Recording-Plus-Microphone.html ├── Canvas-Animation-Recording-Plus-Mp3.html ├── Canvas-Animation-Recording.html ├── README.md ├── WebRTC.png ├── canvas-designer.js ├── index.html ├── record-canvas-drawings.html ├── video.webm └── webpage-recording.html ├── Gruntfile.js ├── LICENSE ├── MRecordRTC ├── README.md └── index.html ├── PHP-and-FFmpeg ├── .htaccess ├── README.md ├── ajax-loader.gif ├── index.html ├── save.php └── uploads │ └── README.md ├── README.md ├── RecordRTC-over-Socketio ├── .gitignore ├── README.md ├── ajax-loader.gif ├── ffmpeg-output │ └── README.md ├── index.html ├── package.json ├── server.js └── uploads │ └── README.md ├── RecordRTC-to-ASPNETMVC ├── README.md ├── RecordRTC_to_ASPNETMVC.sln └── RecordRTC_to_ASPNETMVC │ ├── Controllers │ ├── README.md │ └── RecordRTCController.cs │ ├── Global.asax │ ├── Global.asax.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── RecordRTC_to_ASPNETMVC.csproj │ ├── RecordRTC_to_ASPNETMVC.csproj.user │ ├── Views │ ├── RecordRTC │ │ └── Index.cshtml │ ├── Web.config │ └── _ViewStart.cshtml │ ├── Web.Debug.config │ ├── Web.Release.config │ ├── Web.config │ ├── bin │ ├── RecordRTC_to_ASPNETMVC.dll │ └── RecordRTC_to_ASPNETMVC.pdb │ └── uploads │ └── README.md ├── RecordRTC-to-Nodejs ├── .gitignore ├── README.md ├── ajax-loader.gif ├── index.html ├── node_modules │ └── README.md ├── package.json ├── server.js └── uploads │ └── README.md ├── RecordRTC-to-PHP ├── .htaccess ├── README.md ├── delete.php ├── index.html ├── save.php └── uploads │ └── README.md ├── RecordRTC.js ├── RecordRTC.min.js ├── SECURITY.md ├── WebGL-Recording ├── README.md ├── assets │ ├── DST-Canopy.mp3 │ ├── DST-Canopy.ogg │ ├── blank.cur │ ├── duck.dae │ ├── duck.png │ ├── duckCM.png │ ├── icon.png │ ├── pickup.mp3 │ ├── pickup.ogg │ ├── planeDiffuse.png │ ├── scene.xml │ ├── seymourplane_triangulate.dae │ ├── target.dae │ ├── waterheight.jpg │ └── waternormal.jpg ├── index.html ├── logic.js ├── plotly.html ├── style.css ├── vendor │ ├── README.md │ ├── backbone-min.js │ ├── buzz.js │ ├── glge-compiled-min.js │ ├── glge-compiled.js │ ├── jquery-1.7.1.min.js │ └── underscore-min.js └── view.js ├── bower.json ├── dev ├── CanvasRecorder.js ├── Cross-Browser-Declarations.js ├── DiskStorage.js ├── GetRecorderType.js ├── GifRecorder.js ├── MRecordRTC.js ├── MediaStreamRecorder.js ├── MultiStreamRecorder.js ├── MultiStreamsMixer.js ├── README.md ├── RecordRTC-Configuration.js ├── RecordRTC.IndexedDB.js ├── RecordRTC.js ├── RecordRTC.promises.js ├── StereoAudioRecorder.js ├── Storage.js ├── WebAssemblyRecorder.js ├── Whammy.js ├── WhammyRecorder.js ├── amd.js └── isMediaRecorderCompatible.js ├── dist ├── RecordRTC.js └── RecordRTC.min.js ├── favicon.ico ├── index.html ├── libs ├── EBML.js ├── gif-recorder.js ├── webm-wasm.js ├── webm-wasm.wasm └── webm-worker.js ├── npm-test.js ├── package.json ├── server.js ├── simple-demos ├── 16khz-audio-recording.html ├── README.md ├── Record-Mp3-or-Wav.html ├── RecordRTCPromisesHandler.html ├── RecordRTC_Extension.html ├── WebAssemblyRecorder.html ├── audio-recording.html ├── auto-stop-on-silence.html ├── bitsPerSecond.html ├── calculate-recording-duration.html ├── destroy.html ├── edge-audio-recording.html ├── embedded-iframes.html ├── gif-recording.html ├── index.html ├── isTypeSupported.html ├── multi-audios-recording.html ├── multi-cameras-recording.html ├── onStateChanged.html ├── onTimeStamp.html ├── ondataavailable-StereoAudioRecorder.html ├── ondataavailable.html ├── pass-getUserMedia-constraints.html ├── php-upload-jquery.html ├── php-upload-simple-javascript.html ├── preview-blob-size-during-recording.html ├── raw-pcm.html ├── record-cropped-screen.html ├── recording-html-element.html ├── reuse-same-instance.html ├── screen-recording.html ├── seeking-workaround.html ├── setRecordingDuration.html ├── show-animated-bar-on-video.html ├── show-logo-on-recorded-video.html ├── video-mirror-recording.html ├── video-plus-screen-recording.html └── video-recording.html ├── test ├── README.md ├── audio-recording-using-StereoAudioRecorder.js ├── audio-recording.js ├── browserstack.config.js ├── canvas-recording.js ├── html-test-files │ ├── README.md │ ├── audio-recording-using-StereoAudioRecorder.html │ ├── audio-recording.html │ ├── canvas-recording.html │ ├── video-recording-using-WhammyRecorder.html │ └── video-recording.html ├── video-recording-using-WhammyRecorder.js └── video-recording.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/.travis.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Canvas-Recording/Canvas-Animation-Recording-Plus-Microphone-Plus-Mp3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/Canvas-Animation-Recording-Plus-Microphone-Plus-Mp3.html -------------------------------------------------------------------------------- /Canvas-Recording/Canvas-Animation-Recording-Plus-Microphone.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/Canvas-Animation-Recording-Plus-Microphone.html -------------------------------------------------------------------------------- /Canvas-Recording/Canvas-Animation-Recording-Plus-Mp3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/Canvas-Animation-Recording-Plus-Mp3.html -------------------------------------------------------------------------------- /Canvas-Recording/Canvas-Animation-Recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/Canvas-Animation-Recording.html -------------------------------------------------------------------------------- /Canvas-Recording/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/README.md -------------------------------------------------------------------------------- /Canvas-Recording/WebRTC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/WebRTC.png -------------------------------------------------------------------------------- /Canvas-Recording/canvas-designer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/canvas-designer.js -------------------------------------------------------------------------------- /Canvas-Recording/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/index.html -------------------------------------------------------------------------------- /Canvas-Recording/record-canvas-drawings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/record-canvas-drawings.html -------------------------------------------------------------------------------- /Canvas-Recording/video.webm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/video.webm -------------------------------------------------------------------------------- /Canvas-Recording/webpage-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Canvas-Recording/webpage-recording.html -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/LICENSE -------------------------------------------------------------------------------- /MRecordRTC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/MRecordRTC/README.md -------------------------------------------------------------------------------- /MRecordRTC/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/MRecordRTC/index.html -------------------------------------------------------------------------------- /PHP-and-FFmpeg/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/PHP-and-FFmpeg/.htaccess -------------------------------------------------------------------------------- /PHP-and-FFmpeg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/PHP-and-FFmpeg/README.md -------------------------------------------------------------------------------- /PHP-and-FFmpeg/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/PHP-and-FFmpeg/ajax-loader.gif -------------------------------------------------------------------------------- /PHP-and-FFmpeg/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/PHP-and-FFmpeg/index.html -------------------------------------------------------------------------------- /PHP-and-FFmpeg/save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/PHP-and-FFmpeg/save.php -------------------------------------------------------------------------------- /PHP-and-FFmpeg/uploads/README.md: -------------------------------------------------------------------------------- 1 | https://github.com/muaz-khan/RecordRTC/tree/master/PHP-and-FFmpeg -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/README.md -------------------------------------------------------------------------------- /RecordRTC-over-Socketio/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* -------------------------------------------------------------------------------- /RecordRTC-over-Socketio/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-over-Socketio/README.md -------------------------------------------------------------------------------- /RecordRTC-over-Socketio/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-over-Socketio/ajax-loader.gif -------------------------------------------------------------------------------- /RecordRTC-over-Socketio/ffmpeg-output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-over-Socketio/ffmpeg-output/README.md -------------------------------------------------------------------------------- /RecordRTC-over-Socketio/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-over-Socketio/index.html -------------------------------------------------------------------------------- /RecordRTC-over-Socketio/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-over-Socketio/package.json -------------------------------------------------------------------------------- /RecordRTC-over-Socketio/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-over-Socketio/server.js -------------------------------------------------------------------------------- /RecordRTC-over-Socketio/uploads/README.md: -------------------------------------------------------------------------------- 1 | Your wav/webm files will be saved in this directory. 2 | -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/README.md -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC.sln -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Controllers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Controllers/README.md -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Controllers/RecordRTCController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Controllers/RecordRTCController.cs -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Global.asax: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Global.asax -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Global.asax.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Global.asax.cs -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/RecordRTC_to_ASPNETMVC.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/RecordRTC_to_ASPNETMVC.csproj -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/RecordRTC_to_ASPNETMVC.csproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/RecordRTC_to_ASPNETMVC.csproj.user -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Views/RecordRTC/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Views/RecordRTC/Index.cshtml -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Views/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Views/Web.config -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | Layout = null; 3 | } -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Web.Debug.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Web.Debug.config -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Web.Release.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Web.Release.config -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Web.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/Web.config -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/bin/RecordRTC_to_ASPNETMVC.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/bin/RecordRTC_to_ASPNETMVC.dll -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/bin/RecordRTC_to_ASPNETMVC.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/bin/RecordRTC_to_ASPNETMVC.pdb -------------------------------------------------------------------------------- /RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/uploads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-ASPNETMVC/RecordRTC_to_ASPNETMVC/uploads/README.md -------------------------------------------------------------------------------- /RecordRTC-to-Nodejs/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/* -------------------------------------------------------------------------------- /RecordRTC-to-Nodejs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-Nodejs/README.md -------------------------------------------------------------------------------- /RecordRTC-to-Nodejs/ajax-loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-Nodejs/ajax-loader.gif -------------------------------------------------------------------------------- /RecordRTC-to-Nodejs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-Nodejs/index.html -------------------------------------------------------------------------------- /RecordRTC-to-Nodejs/node_modules/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-Nodejs/node_modules/README.md -------------------------------------------------------------------------------- /RecordRTC-to-Nodejs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-Nodejs/package.json -------------------------------------------------------------------------------- /RecordRTC-to-Nodejs/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-Nodejs/server.js -------------------------------------------------------------------------------- /RecordRTC-to-Nodejs/uploads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-Nodejs/uploads/README.md -------------------------------------------------------------------------------- /RecordRTC-to-PHP/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-PHP/.htaccess -------------------------------------------------------------------------------- /RecordRTC-to-PHP/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-PHP/README.md -------------------------------------------------------------------------------- /RecordRTC-to-PHP/delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-PHP/delete.php -------------------------------------------------------------------------------- /RecordRTC-to-PHP/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-PHP/index.html -------------------------------------------------------------------------------- /RecordRTC-to-PHP/save.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-PHP/save.php -------------------------------------------------------------------------------- /RecordRTC-to-PHP/uploads/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC-to-PHP/uploads/README.md -------------------------------------------------------------------------------- /RecordRTC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC.js -------------------------------------------------------------------------------- /RecordRTC.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/RecordRTC.min.js -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/SECURITY.md -------------------------------------------------------------------------------- /WebGL-Recording/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/README.md -------------------------------------------------------------------------------- /WebGL-Recording/assets/DST-Canopy.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/DST-Canopy.mp3 -------------------------------------------------------------------------------- /WebGL-Recording/assets/DST-Canopy.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/DST-Canopy.ogg -------------------------------------------------------------------------------- /WebGL-Recording/assets/blank.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/blank.cur -------------------------------------------------------------------------------- /WebGL-Recording/assets/duck.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/duck.dae -------------------------------------------------------------------------------- /WebGL-Recording/assets/duck.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/duck.png -------------------------------------------------------------------------------- /WebGL-Recording/assets/duckCM.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/duckCM.png -------------------------------------------------------------------------------- /WebGL-Recording/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/icon.png -------------------------------------------------------------------------------- /WebGL-Recording/assets/pickup.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/pickup.mp3 -------------------------------------------------------------------------------- /WebGL-Recording/assets/pickup.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/pickup.ogg -------------------------------------------------------------------------------- /WebGL-Recording/assets/planeDiffuse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/planeDiffuse.png -------------------------------------------------------------------------------- /WebGL-Recording/assets/scene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/scene.xml -------------------------------------------------------------------------------- /WebGL-Recording/assets/seymourplane_triangulate.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/seymourplane_triangulate.dae -------------------------------------------------------------------------------- /WebGL-Recording/assets/target.dae: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/target.dae -------------------------------------------------------------------------------- /WebGL-Recording/assets/waterheight.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/waterheight.jpg -------------------------------------------------------------------------------- /WebGL-Recording/assets/waternormal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/assets/waternormal.jpg -------------------------------------------------------------------------------- /WebGL-Recording/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/index.html -------------------------------------------------------------------------------- /WebGL-Recording/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/logic.js -------------------------------------------------------------------------------- /WebGL-Recording/plotly.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/plotly.html -------------------------------------------------------------------------------- /WebGL-Recording/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/style.css -------------------------------------------------------------------------------- /WebGL-Recording/vendor/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/vendor/README.md -------------------------------------------------------------------------------- /WebGL-Recording/vendor/backbone-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/vendor/backbone-min.js -------------------------------------------------------------------------------- /WebGL-Recording/vendor/buzz.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/vendor/buzz.js -------------------------------------------------------------------------------- /WebGL-Recording/vendor/glge-compiled-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/vendor/glge-compiled-min.js -------------------------------------------------------------------------------- /WebGL-Recording/vendor/glge-compiled.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/vendor/glge-compiled.js -------------------------------------------------------------------------------- /WebGL-Recording/vendor/jquery-1.7.1.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/vendor/jquery-1.7.1.min.js -------------------------------------------------------------------------------- /WebGL-Recording/vendor/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/vendor/underscore-min.js -------------------------------------------------------------------------------- /WebGL-Recording/view.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/WebGL-Recording/view.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/bower.json -------------------------------------------------------------------------------- /dev/CanvasRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/CanvasRecorder.js -------------------------------------------------------------------------------- /dev/Cross-Browser-Declarations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/Cross-Browser-Declarations.js -------------------------------------------------------------------------------- /dev/DiskStorage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/DiskStorage.js -------------------------------------------------------------------------------- /dev/GetRecorderType.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/GetRecorderType.js -------------------------------------------------------------------------------- /dev/GifRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/GifRecorder.js -------------------------------------------------------------------------------- /dev/MRecordRTC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/MRecordRTC.js -------------------------------------------------------------------------------- /dev/MediaStreamRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/MediaStreamRecorder.js -------------------------------------------------------------------------------- /dev/MultiStreamRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/MultiStreamRecorder.js -------------------------------------------------------------------------------- /dev/MultiStreamsMixer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/MultiStreamsMixer.js -------------------------------------------------------------------------------- /dev/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/README.md -------------------------------------------------------------------------------- /dev/RecordRTC-Configuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/RecordRTC-Configuration.js -------------------------------------------------------------------------------- /dev/RecordRTC.IndexedDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/RecordRTC.IndexedDB.js -------------------------------------------------------------------------------- /dev/RecordRTC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/RecordRTC.js -------------------------------------------------------------------------------- /dev/RecordRTC.promises.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/RecordRTC.promises.js -------------------------------------------------------------------------------- /dev/StereoAudioRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/StereoAudioRecorder.js -------------------------------------------------------------------------------- /dev/Storage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/Storage.js -------------------------------------------------------------------------------- /dev/WebAssemblyRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/WebAssemblyRecorder.js -------------------------------------------------------------------------------- /dev/Whammy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/Whammy.js -------------------------------------------------------------------------------- /dev/WhammyRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/WhammyRecorder.js -------------------------------------------------------------------------------- /dev/amd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/amd.js -------------------------------------------------------------------------------- /dev/isMediaRecorderCompatible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dev/isMediaRecorderCompatible.js -------------------------------------------------------------------------------- /dist/RecordRTC.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dist/RecordRTC.js -------------------------------------------------------------------------------- /dist/RecordRTC.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/dist/RecordRTC.min.js -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/favicon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/index.html -------------------------------------------------------------------------------- /libs/EBML.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/libs/EBML.js -------------------------------------------------------------------------------- /libs/gif-recorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/libs/gif-recorder.js -------------------------------------------------------------------------------- /libs/webm-wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/libs/webm-wasm.js -------------------------------------------------------------------------------- /libs/webm-wasm.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/libs/webm-wasm.wasm -------------------------------------------------------------------------------- /libs/webm-worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/libs/webm-worker.js -------------------------------------------------------------------------------- /npm-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/npm-test.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/server.js -------------------------------------------------------------------------------- /simple-demos/16khz-audio-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/16khz-audio-recording.html -------------------------------------------------------------------------------- /simple-demos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/README.md -------------------------------------------------------------------------------- /simple-demos/Record-Mp3-or-Wav.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/Record-Mp3-or-Wav.html -------------------------------------------------------------------------------- /simple-demos/RecordRTCPromisesHandler.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/RecordRTCPromisesHandler.html -------------------------------------------------------------------------------- /simple-demos/RecordRTC_Extension.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/RecordRTC_Extension.html -------------------------------------------------------------------------------- /simple-demos/WebAssemblyRecorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/WebAssemblyRecorder.html -------------------------------------------------------------------------------- /simple-demos/audio-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/audio-recording.html -------------------------------------------------------------------------------- /simple-demos/auto-stop-on-silence.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/auto-stop-on-silence.html -------------------------------------------------------------------------------- /simple-demos/bitsPerSecond.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/bitsPerSecond.html -------------------------------------------------------------------------------- /simple-demos/calculate-recording-duration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/calculate-recording-duration.html -------------------------------------------------------------------------------- /simple-demos/destroy.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/destroy.html -------------------------------------------------------------------------------- /simple-demos/edge-audio-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/edge-audio-recording.html -------------------------------------------------------------------------------- /simple-demos/embedded-iframes.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/embedded-iframes.html -------------------------------------------------------------------------------- /simple-demos/gif-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/gif-recording.html -------------------------------------------------------------------------------- /simple-demos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/index.html -------------------------------------------------------------------------------- /simple-demos/isTypeSupported.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/isTypeSupported.html -------------------------------------------------------------------------------- /simple-demos/multi-audios-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/multi-audios-recording.html -------------------------------------------------------------------------------- /simple-demos/multi-cameras-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/multi-cameras-recording.html -------------------------------------------------------------------------------- /simple-demos/onStateChanged.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/onStateChanged.html -------------------------------------------------------------------------------- /simple-demos/onTimeStamp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/onTimeStamp.html -------------------------------------------------------------------------------- /simple-demos/ondataavailable-StereoAudioRecorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/ondataavailable-StereoAudioRecorder.html -------------------------------------------------------------------------------- /simple-demos/ondataavailable.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/ondataavailable.html -------------------------------------------------------------------------------- /simple-demos/pass-getUserMedia-constraints.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/pass-getUserMedia-constraints.html -------------------------------------------------------------------------------- /simple-demos/php-upload-jquery.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/php-upload-jquery.html -------------------------------------------------------------------------------- /simple-demos/php-upload-simple-javascript.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/php-upload-simple-javascript.html -------------------------------------------------------------------------------- /simple-demos/preview-blob-size-during-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/preview-blob-size-during-recording.html -------------------------------------------------------------------------------- /simple-demos/raw-pcm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/raw-pcm.html -------------------------------------------------------------------------------- /simple-demos/record-cropped-screen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/record-cropped-screen.html -------------------------------------------------------------------------------- /simple-demos/recording-html-element.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/recording-html-element.html -------------------------------------------------------------------------------- /simple-demos/reuse-same-instance.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/reuse-same-instance.html -------------------------------------------------------------------------------- /simple-demos/screen-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/screen-recording.html -------------------------------------------------------------------------------- /simple-demos/seeking-workaround.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/seeking-workaround.html -------------------------------------------------------------------------------- /simple-demos/setRecordingDuration.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/setRecordingDuration.html -------------------------------------------------------------------------------- /simple-demos/show-animated-bar-on-video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/show-animated-bar-on-video.html -------------------------------------------------------------------------------- /simple-demos/show-logo-on-recorded-video.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/show-logo-on-recorded-video.html -------------------------------------------------------------------------------- /simple-demos/video-mirror-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/video-mirror-recording.html -------------------------------------------------------------------------------- /simple-demos/video-plus-screen-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/video-plus-screen-recording.html -------------------------------------------------------------------------------- /simple-demos/video-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/simple-demos/video-recording.html -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/README.md -------------------------------------------------------------------------------- /test/audio-recording-using-StereoAudioRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/audio-recording-using-StereoAudioRecorder.js -------------------------------------------------------------------------------- /test/audio-recording.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/audio-recording.js -------------------------------------------------------------------------------- /test/browserstack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/browserstack.config.js -------------------------------------------------------------------------------- /test/canvas-recording.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/canvas-recording.js -------------------------------------------------------------------------------- /test/html-test-files/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/html-test-files/README.md -------------------------------------------------------------------------------- /test/html-test-files/audio-recording-using-StereoAudioRecorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/html-test-files/audio-recording-using-StereoAudioRecorder.html -------------------------------------------------------------------------------- /test/html-test-files/audio-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/html-test-files/audio-recording.html -------------------------------------------------------------------------------- /test/html-test-files/canvas-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/html-test-files/canvas-recording.html -------------------------------------------------------------------------------- /test/html-test-files/video-recording-using-WhammyRecorder.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/html-test-files/video-recording-using-WhammyRecorder.html -------------------------------------------------------------------------------- /test/html-test-files/video-recording.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/html-test-files/video-recording.html -------------------------------------------------------------------------------- /test/video-recording-using-WhammyRecorder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/video-recording-using-WhammyRecorder.js -------------------------------------------------------------------------------- /test/video-recording.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/test/video-recording.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/muaz-khan/RecordRTC/HEAD/webpack.config.js --------------------------------------------------------------------------------