Stop capturing video and save to disk * @memberof Debug
()
| 667 | /** Stop capturing video and save to disk |
| 668 | * @memberof Debug */ |
| 669 | function debugVideoCaptureStop() |
| 670 | { |
| 671 | ASSERT(debugVideoCaptureIsActive(), 'Not capturing video!'); |
| 672 | |
| 673 | // stop recording |
| 674 | LOG(`Video capture ended. ${debugVideoCapture.captureTimer.get().toFixed(2)} seconds recorded.`); |
| 675 | debugVideoCaptureIcon.style.display = 'none'; |
| 676 | debugVideoCapture.silentAudioSource?.stop(); |
| 677 | debugVideoCapture.mediaRecorder?.stop(); |
| 678 | debugVideoCapture.videoTrack?.stop(); |
| 679 | debugVideoCapture = undefined; |
| 680 | } |
| 681 | |
| 682 | // update video capture, called automatically by engine |
| 683 | function debugVideoCaptureUpdate() |
no test coverage detected