Sverre Skodje

Results 70 comments of Sverre Skodje

It only happens when you stress the cpu? Do you use gpu or cpu encoding?

Unfortunately i have not had any time to investigate it, as i've spent the time i have trying to get the next release out. Can you check if the issue...

I'l look into it. How long did you record to notice this issue?

I believe this issue should be fixed with 323bddf6d03690bf885ce3bd0d15bbe010b9faf2. It would be great if you could test it on your system :)

I hope the issue should be properly fixed with 8fc241d9f9c1ffd68b4a87095b25a49b3d2ccbdf. At least i was able to record 7 hours overnight without any audio drift.

Hey, sorry for the late reply. It's unfortunately not supported to do what you want, but if you wish to add the functionality, i'm happy to accept a PR :)

I'm able to reproduce the same thing when using software encoding. For some reason, the MF h264 software encoder does not work properly when called from Winforms, and giving no...

That's helpful, as i can see what's changed since then. 👍

Fixed with 4423c27e1df1e0a92beb9d0c0f8b472dcf94cabb

```c# List inputDevices = Recorder.GetSystemAudioDevices(AudioDeviceSource.InputDevices); List outputDevices = Recorder.GetSystemAudioDevices(AudioDeviceSource.OutputDevices); AudioDevice selectedOutputDevice = outputDevices.FirstOrDefault();//select one of the devices.. Passing empty string or null uses system default playback device. AudioDevice selectedInputDevice =...