I'm trying to capture video with audio from a webcam using Processing. I'm able to capture video using Processing's video library but there's no way of capturing audio along the video with that library. There is a separate library for working with audio (the minim library) but I don't know how to merge together audio and video.
I need it to be with processing because is pretty much the only programming language I know. Now, Processing is really Java so I think there should be possible to use the Java Media Framework
but I don't really know where to start to use the JMF
along with Processing.
Anyone can give me some guidance on how to capture audio and video in Processing/Java?
Edit
What I'm trying to do can be done using the GSVideo
library. GSPipeline
is the way to go, I found this post on processing's forum with more details.