Edd Smith

Results 11 comments of Edd Smith

+1 For vulkan

Happy New Year! Is there any update on the roadmap for this? As someone else already mentioned, the desire for this isn't about gains in AVPro Video's performance it's about...

@AttackOnMorty I created a quick and dirty workaround that fixes up the incorrectly parsed fields. https://gist.github.com/WikkidEdd/daff060aa1b36fdab83213d96f6a557c

I also need to be able to record Unity audio and the microphone simultaneously. Currently looking into combining the two sources manually.

Yup, I got it working. The basic idea is to use the OnAudioFilterRead callback from multiple sources and then forward them on to custom UnityAudioCapture and combine the two. I've...

You need to set the mute behavior of the microphone OnAudioFilterReadForwarder to MuteAfter. This basically lets you capture the mic audio, but prevents it from being used by anything else...

Did you do this step mentioned in the gist? ``` Remove this line in CaptureBase.cs removeComponent = !(_unityAudioCapture is CaptureAudioFromAudioListener); ```

I'll double check that my setup matches you and get back you. What platform are you running? Can you confirm in editor that those components are correctly on the objects?

Ah, one thing you should check is that you have the CaptureAudioFromMultipleSources component hooked up in the avpro script underneath where you select the audio source to be "Unity" It...

Great. Glad it worked, sorry for missing that from the instructions. CC: @EricBeetsOfficial-Opuscope, this should fix your problem too