I'm trying to transcode video to different qualities with xuggle/MediaTool. I follow the tutorial from the xuggle wiki, but there is no effect. What do I wrong?

See my code:

test:

public class BitRateChangerTest {
    private IMediaReader reader;
    private String sourceUrl =  "file.flv";
    private String destinationUrl =  "file.avi";

    @Before
    public void setUp() throws Exception {
        reader = ToolFactory.makeReader(sourceUrl);
        assert (reader.getUrl()) != null;
    }

    @After
    public void tearDown() throws Exception {
    }

    @Test
    public void shouldChangeVideoBitrate() {
        int videoBitRate = 100 * 1024;
        int audioBitRate = 10 * 1024;
        BitRateChanger bitRateChanger = new BitRateChanger(videoBitRate, audioBitRate);
        IMediaWriter writer = ToolFactory.makeWriter(destinationUrl, reader);

        writer.addListener(bitRateChanger);
        reader.addListener(writer);

        while (reader.readPacket() == null) {
        }

        reader = ToolFactory.makeReader(destinationUrl);
        reader.readPacket();
        assertEquals(videoBitRate, reader.getContainer().getBitRate());
    }

}

MediaListenerAdapter:

public class BitRateChanger extends MediaListenerAdapter {

    private int videoBitRate;
    private int audioBitRate;

    private int tolerance = 10000;

    private Logger _log = Logger.getLogger(this.getClass());

public BitRateChanger(int videoBitRate, int audioBitRate) {
        super();
        this.videoBitRate = videoBitRate;
        this.audioBitRate = audioBitRate;
    }

    @Override
    public void onAddStream(IAddStreamEvent event) {
        _log.debug("Adding stream.");
        IStreamCoder coder = event.getSource().getContainer().getStream(event.getStreamIndex()).getStreamCoder();
        coder.setFlag(IStreamCoder.Flags.FLAG_QSCALE, false);
        if (coder.getCodecType() == ICodec.Type.CODEC_TYPE_VIDEO) {
            _log.debug("Conveting video");
            coder.setBitRate(videoBitRate);
            coder.setBitRateTolerance(tolerance);
            coder.setProperty("b", videoBitRate);
        } else if(coder.getCodecType() == ICodec.Type.CODEC_TYPE_AUDIO){
            _log.debug("Conveting audio");
        }
        super.onAddStream(event); 
    }    
}

JUnit trace:

java.lang.AssertionError: expected:<102400> but was:<179744>
(...)
BitRateChangerTest.shouldChangeVideoBitrate(BitRateChangerTest.java:44)
link|improve this question

The strange thing is, that it works if destination is .flv file. And moreover when I check bitrate using VLC, it is correct (as I set in the test). – mrzasa Jan 16 at 12:02
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.