Hi there 👋
I've discovered this project and I'm using it with some good success, but I found an issue that should be easy to fix: the provided outputPath is not fully honored as the resulting file always has an extra timestamp attached to it.
Example
await recorder.startRecording('/tmp/video.mp4', {...});
...
const result = await recorder.stopRecording();
console.log(result.outputPath); // shows "/tmp/video-1767787936862.mp4"
This forces the consumer to having to rename the file, which is a bid weird given the correct and final path was given as an input.
Could this (I presume temporary?) timestamp be removed automatically by the library?
Thanks!
Hi there 👋
I've discovered this project and I'm using it with some good success, but I found an issue that should be easy to fix: the provided
outputPathis not fully honored as the resulting file always has an extra timestamp attached to it.Example
This forces the consumer to having to rename the file, which is a bid weird given the correct and final path was given as an input.
Could this (I presume temporary?) timestamp be removed automatically by the library?
Thanks!