Combine MovieFileIn and AudioDeviceIn

Hello,

I have an AudioDeviceIn node for microphone and MovieFileIn for a short clip. I would like to create a third node, which combines these two and send the result to a TOP Out node.

Reference:
drive.google.com/open?id=0B0gog … 20zd0VvM2s

Thank you!

Sound and image are treated separately inside TD, they don’t use the same nodes.
A TOP is a Texture-Operator, which means it contain only image information and it is performed on your GPU. You can’t send audio through here.
Audio is done by CHOPs (Channel Operators). So next to your TOP Out you’ll need to use a CHOP Out to send the audio outside of your COMP to another CHOP that will use it.

Alright, thank you!

I would like to combine those and insert into the MovieFileOut node. I can see there is a parameter for Audio CHOP present, so I will use this. I thought it might be possible to combine these two (movIn and Audio chop) before the MovieFileOut. It makes things a little bit more complicated, but no matter. It should do the trick.

Thanks!