(file)
| 21 | const INDEX = parseInt(process.argv[2], 10) ?? 0; |
| 22 | |
| 23 | const encodeArrayBuffer = (file) => Array.from(new Uint8Array(file)); |
| 24 | |
| 25 | const MAX_CHUNK_SIZE = 1024 * 500; // 500kb |
| 26 | interface Video { |
no outgoing calls
no test coverage detected