With this patch, I was able to use the following command to generate an uncompressed mp4: $ ffmpeg -i input.mp4 -c:v rawvideo -pix_fmt rgb24 -tag:v uncv out.mp4
The output file successfully played in GPAC. My first question is whether to reuse the existing AV_CODEC_ID_RAWVIDEO, or if a brand new codec should be created specifically for handling uncompressed MP4 files. For those not familiar with ISO/IEC 23001-17:2024, this uncompressed codec has many input parameters, making it configurable enough to handle just about any type of data. A complete implementation would be quite involved which is why I'm questioning if "-c:v rawvideo" is the correct choice. Any feedback would be greatly appreciated.
0001-Encode-RGB-interleaved-8-bit-uncompressed-mp4.patch
Description: Binary data
_______________________________________________ ffmpeg-devel mailing list ffmpeg-devel@ffmpeg.org https://ffmpeg.org/mailman/listinfo/ffmpeg-devel To unsubscribe, visit link above, or email ffmpeg-devel-requ...@ffmpeg.org with subject "unsubscribe".