2025-12-02 12:48 AM
Hi, @krast
The readme for the VENC_SDCard_ThreadX example
states:
"The output is raw since no file system is used for now"
but the first slide of the STM32N6 demo workshop - 11 Video encoder (VENC) in practice workshop
https://www.youtube.com/watch?v=25lEF4GgN8M
says that this example uses a FAT32 file system.
I was wondering if there might be an error in the readme where it states "The output is raw since no file system is used for now"?
Thank you very much for these examples - they're very valuable.
Will
2025-12-02 1:58 AM
Hello @Will_Robertson
In this example a file called "encoded.h264" is created in the SD card.
To read back encoded video, it can be converted from raw bytestream to mp4 using a tool called ffmpeg with the following command : ffmpeg -f h264 -framerate 30 -i [extracted file] -c copy [output file]