(ffprobePath, p)
| 52 | } |
| 53 | |
| 54 | export async function readAudioFileInfo(ffprobePath, p) { |
| 55 | const duration = await readDuration(ffprobePath, p); |
| 56 | |
| 57 | return { duration }; |
| 58 | } |
| 59 | |
| 60 | export function toArrayInteger(buffer) { |
| 61 | if (buffer.length > 0) { |
no test coverage detected