(outputPath: string, ext: string)
| 294 | } |
| 295 | |
| 296 | async function readOut(outputPath: string, ext: string): Promise<FfmpegResult> { |
| 297 | const buffer = await fs.readFile(outputPath) |
| 298 | return { buffer, ext, contentType: mimeFromExt(ext) } |
| 299 | } |
| 300 | |
| 301 | async function overlayAudio( |
| 302 | dir: string, |
no test coverage detected