View Full Version : jpeg2000 conversion?


ben_franklin
28th May 2009, 01:06
I have a jpeg2000 encoded movie that's about 280 gigs. I'm not really sure if its 2k or 4k. What is a good way to get it over to h.264?

Guest
28th May 2009, 01:13
How did you get a movie in jpeg2000?

ben_franklin
28th May 2009, 03:31
A client brought it to me. It was apparently formatted for some high end media server called a JMN3000.

Guest
28th May 2009, 04:34
http://www.openjpeg.org/

MfA
28th May 2009, 06:04
With 4K OpenJPEG isn't very practical (blows up data by ~30x). Maybe Mainconcept's DirectShow decoder?

Leak
28th May 2009, 13:36
With 4K OpenJPEG isn't very practical (blows up data by ~30x). Maybe Mainconcept's DirectShow decoder?
Since OpenJPEG is a library shouldn't it be possible to write a small program that just dumps the decoded images to stdout so they can be piped directly into x264 instead of writing them to disk?

J_Darnley
28th May 2009, 15:33
Since OpenJPEG is a library shouldn't it be possible to write a small program that just dumps the decoded images to stdout so they can be piped directly into x264 instead of writing them to disk?
Doesn't ffmpeg already do this?

Leak
28th May 2009, 17:30
Doesn't ffmpeg already do this?
Now that you mention it - it sure looks that way (http://ffmpeg.org/general.html#SEC5) (using libopenjpg).