I’m working on to develop a video playback application using hardware decoder NVDEC, and my platform is Jetson Orin NX 8GB. Based on the existing samples in jetson multimedia api, all of them aim to decode the entire h264/265 video file and display on the screen frame by frame continuously. However, for the real video playback application, functionalities like “play/pause, jump to specific timestamp” are very common. I’m not that familiar with such application, so would anyone give some suggestion on the workflow?
Some random thoughts of mine:
Load the video data and decode it, save the decoded NvBuffer one by one aside. However, I know the maximum # of frame buffer is 1024. Then it’s not achievable. Also due to the memory limit, Orin NX 8GB’s ram won’t fit much frames in 4K.
Firstly, wish you a merry Christmas! Thanks for reply, I will try the gstreamer command, but is there any reference to implementation of a “video player” using NVDEC in C++? as I mentioned, I need to develop the functionalities like, pause/play, jumping to desired timestamp (frame number) programmatically.