How to get the yuv information of each frame.
zhw2590582 opened this issue · 2 comments
zhw2590582 commented
Your project is so amazing, I want to ask if I can get YUV information from H264's nalu, I want to render it to the canvas.
ssilkin commented
bsparser only parses high level headers. You can decode H264 using ffmpeg (e.g. ffmpeg -i h264stream out.y4m) and then render YUV using https://ssilkin.github.io/yuv/
zhw2590582 commented
Ok, thank you for your reply.