I'm trying to implement a VirtualDub-like video editor into my C# app that can display any frame from a video file (h264 is the main focus).
I've already implemented something with FFMPEG from this post: Get thumbnail image of video file in C#
but it's too slow. I'd like to just access the frame image directly from the video without needing to write an image file to disk.
Is there a way to achieve this kind of frame-accurate seeking in C#?