4
I would like to extract the raw .265 bitstream from HEVC mkv file. I use this:
ffmpeg.exe -i hevc.mkv -an -vcodec copy -f hevc bitstream.265
I got this error:
Requested output format 'hevc' is not a suitable output format
However, HEVC demuxer is already implemented and I can extract it to uncompressed raw YUV. ffmpeg -formats:
File formats:
D. = Demuxing supported
.E = Muxing supported
D hevc raw HEVC video
What is wrong here?
1I think you just need a
-f rawvideo. Since the codec is copied, that should do it. – slhck – 2013-11-21T21:44:16.397Well it does something, but the result is improper stream, i.e. can't be decoded with HM decoder 12.0 (TappDecoder.exe) – Mark – 2013-11-24T15:29:11.697