update readme with useful docs, fix normalize.css

This commit is contained in:
2014-08-19 20:23:36 -07:00
parent 7c9f7840fd
commit 489596d7c7
3 changed files with 12 additions and 4 deletions

View File

@@ -5,3 +5,10 @@ I wanted to mess around with capturing audio via getUserMedia
# Boilerplate # Boilerplate
Started with [prototool](https://github.com/w33ble/prototool) Started with [prototool](https://github.com/w33ble/prototool)
# Credits and resources
[Capturing Audio & Video in HTML5](http://www.html5rocks.com/en/tutorials/getusermedia/intro/)
[Live Web Audio Input Enabled!](http://updates.html5rocks.com/2012/09/Live-Web-Audio-Input-Enabled)
[Audio Capture](http://webaudiodemos.appspot.com/AudioRecorder/index.html)
[Modernizr.getUserMedia === undefined](http://stackoverflow.com/questions/21435203/modernizr-getusermedia-undefined)

View File

@@ -20,6 +20,7 @@
"lodash": "~2.4.1", "lodash": "~2.4.1",
"jquery": "~2.1.0", "jquery": "~2.1.0",
"bluebird": "~1.2.3", "bluebird": "~1.2.3",
"modernizr": "~2.7.2" "modernizr": "~2.7.2",
"normalize-css": "~3.0.1"
} }
} }

View File

@@ -12,7 +12,7 @@
<!-- Place favicon.ico and apple-touch-icon.png in the root directory --> <!-- Place favicon.ico and apple-touch-icon.png in the root directory -->
<link rel="stylesheet" href="/css/normalize.css"> <link rel="stylesheet" href="/vendor/normalize-css/normalize.css">
<link rel="stylesheet" href="/css/main.css"> <link rel="stylesheet" href="/css/main.css">
<link rel="stylesheet" href="/css/app.css"> <link rel="stylesheet" href="/css/app.css">
<script src="/vendor/modernizr/modernizr.js"></script> <script src="/vendor/modernizr/modernizr.js"></script>
@@ -26,7 +26,7 @@
<!-- Add your site or application content here --> <!-- Add your site or application content here -->
<p>Record all the audio</p> <p>Record all the audio</p>
<div class="button record"><input type="file" accept="audio/*;capture=microphone"></div> <div class="button record"></div>
<script src="/vendor/requirejs/require.js" data-main="js/main"></script> <script src="/vendor/requirejs/require.js" data-main="js/main"></script>
</body> </body>