I'm xuggle primer and I'd like to transcode video to various formats/qualities. As a newbie I'd like to use the Xuggle MediaTool. As I need to do it efficiently, I want to process each target format in a separate thread. What's the correct concurrency pattern for this case?
Let's say I have file.avi and I'd like to transcode it to .flv and .mov. I'm curious if xuggle starts threads for each Writer in a following case:
IMediaReader reader = ToolFactory.makeReader("file.avi");
reader.addListener(ToolFactory.makeWriter("file.flv", reader));
reader.addListener(ToolFactory.makeWriter("file.mov", reader));
while (reader.readPacket() == null){}
Or maybe I should start conversion for each format in a separate thread?
(code from: MediaTool Introduction)