Opened 6 hours ago
Last modified 4 hours ago
#11277 new defect
FFMPEG does not support J2C output
Reported by: | Pierre-Anthony Lemieux | Owned by: | |
---|---|---|---|
Priority: | important | Component: | avformat |
Version: | unspecified | Keywords: | j2k |
Cc: | Blocked By: | ||
Blocking: | Reproduced by developer: | no | |
Analyzed by developer: | no |
Description
ffmpeg -i blah.mj2 -frames:v 1 -vcodec copy -y blah.j2c
results in a mjp2 file (starts with 0000000c6a5020200d0a870a
) instead of a file that contains a bare codestream (starts with FF4F
).
Change History (4)
comment:2 by , 4 hours ago
Oh, can be reproduced with https://samples.ffmpeg.org/ffmpeg-bugs/trac/ticket4471/spot-day.mj2
comment:4 by , 4 hours ago
The fundamental issue AFAIK is that FFMPEG treats MJ2, JP2 and J2C as the same format, which they are not. This is not a problem on input, because the J2K parser accepts all of them. It is a problem on output when copying the codestream since a MJ2 is not the same as a J2C file.
Note:
See TracTickets
for help on using tickets.
Erm, with you file it produces the magic MIME FF4FFF5100, as it should.