Xuggle codec identification fail
- by Thiago
Hi there,
I'm trying to run the following Xuggle code:
public static boolean convert(String stream) throws IOException, InterruptedException {
IMediaReader reader = ToolFactory.makeReader(stream + ".flv");
IMediaWriter writer = ToolFactory.makeWriter(stream + ".mp3", reader);
reader.addListener(writer);
while (reader.readPacket() != null)
…