(event)
| 93 | |
| 94 | /* 这里把每10ms获取的数据放入recordedBlobs */ |
| 95 | function handleDataAvailable(event) { |
| 96 | if (event.data && event.data.size > 0) { |
| 97 | recordedBlobs.push(event.data); |
| 98 | } |
| 99 | } |
| 100 | |
| 101 | /* |
| 102 | * 录制button状态转换 |
nothing calls this directly
no outgoing calls
no test coverage detected