- https://github.com/mozilla/vtt.js#webvttconvertcuetodomtreewindow-cuetext
- http://www.html5rocks.com/en/tutorials/track/basics/
- https://groups.google.com/a/chromium.org/forum/#!msg/blink-dev/YJ4SY6WHxso/rh6qFmPE480J
- http://html5please.com/#track
- http://blog.gingertech.net/2011/06/27/recent-developments-around-webvtt/
- http://captionatorjs.com/
- https://developer.mozilla.org/en-US/docs/Web/HTML/Element/track#Compatibility
- http://jmacmullin.wordpress.com/2010/11/03/adding-meta-data-to-video-in-ios/
- http://devstreaming.apple.com/videos/wwdc/2014/504xx5n1n7eie65/504/504_advanced_media_for_the_web.pdf?dl=1
- https://developer.apple.com/library/ios/documentation/AudioVideo/Conceptual/HTTP_Live_Streaming_Metadata_Spec/2/2.html#//apple_ref/doc/uid/TP40010435-CH2-DontLinkElementID_1
This file contains hidden or 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
| /* | |
| $ cd /Applications/GitX.app/Contents/Resources/html/css/ | |
| $ open diff.css | |
| */ | |
| .diff .file { | |
| margin: 10px; | |
| line-height: 1.5em; | |
| font-family: Consolas, "Liberation Mono", Courier, monospace; | |
| font-size: 12px; |
This file contains hidden or 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
| // Mock mainly exposes empty functions | |
| return function() { | |
| return { | |
| createElement: function() {} | |
| }; | |
| }; |
This file contains hidden or 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
| var tessel = require('tessel'); | |
| var audio = require('audio-vs1053b').use(tessel.port['A']); | |
| var climate = require('climate-si7020').use(tessel.port['B']); | |
| var chunks = []; | |
| // When we get data, push it into our array | |
| audio.on('data', function(data) { | |
| chunks.push(data); | |
| }); |
OlderNewer