On 11/23/2012 09:51 PM, Mike Cantelon wrote:
> You might want to check out FFMPEG. There's also a variant called ACONV.
> They are good general purpose media conversion tools and I'm pretty sure
> GUI front-ends exist for FFMPEG.
I also suggest FFMPEG.
Do you need JPEG2000 lossy or lossless?
I'm asking, because not every encoder/decoder can do both.
FFMPEG has 2 different JPEG2000 implementations currently:
*) j2k
*) libopenjpeg
Here are 2 examples, quoting from Dave Rice's post [1] on the
ffmpeg-users mailing list:
//----------------------
If you compile with openjpeg you could try:
ffmpeg -i file.avi -map 0 -c:v libopenjpeg -c:a copy lossless.mov
If not, then try:
ffmpeg -i file.avi -map 0 -c:v j2k -strict experimental -c:a copy output.mov
//----------------------
Regards,
Pb
== References:
[1]
http://ffmpeg-users.933282.n4.nabble.com/Can-you-encode-lossless-Motion-JPEG-2000-videos-with-ffmpeg-using-the-right-command-line-arguments-td4651047.html