Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am attempting to transcode video into Apple ProRes 422 Proxy using the prores_kostya codec in ffmpeg, via Xuggler. I can successfully set up a video encoder and encode to the default prores_kostya settings, but I would like to configure the encoder to use the 'proxy' profile (as per the developer's site). I have the following configuration code in my application:

IMediaWriter writer = ToolFactory.makeWriter(OUTPUT_FILE);

writer.addVideoStream(0, 0, outputCodec, WIDTH, HEIGHT);
writer.addAudioStream(1, 2, ICodec.ID.CODEC_ID_PCM_S16LE, 2, 48000);

IStreamCoder streamCoder = writer.getContainer().getStream(0).getStreamCoder();
LOGGER.info("profile is: {}", streamCoder.getPropertyAsString("profile"));
streamCoder.setPixelType(IPixelFormat.Type.YUV422P10LE);
streamCoder.setFrameRate(IRational.make(30,1));
streamCoder.setTimeBase(IRational.make(1,30));
streamCoder.setProperty("profile", "proxy");
LOGGER.info("profile is: {}", streamCoder.getPropertyAsString("profile"));

The output of this block of code is below. Note that profile remains -99, and a bizarre error about parens is thrown.

1637 [main] INFO  n.r.o.corpus.devel.MediaConverter - codec is com.xuggle.xuggler.ICodec@2074329184[type=CODEC_TYPE_VIDEO;id=CODEC_ID_PRORES;name=prores_kostya;] 
1638 [main] INFO  n.r.o.corpus.devel.MediaConverter - profile is: -99 
1639 [main] ERROR org.ffmpeg - [Eval @ 0x10d7d7108] Undefined constant or missing '(' in 'proxy' 
1639 [main] ERROR org.ffmpeg - [prores_kostya @ 0x7faf7c874c00] Unable to parse option value "proxy" 
1639 [main] INFO  n.r.o.corpus.devel.MediaConverter - profile is: -99 

Any idea what's going on here?

share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.