You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I would like to decode a video using complex_filter and nvdec hardware acceleration.
To have it be as fast as possible I would like the decoded frame to be passed to tensorflow directly without leaving the gpu ram so that we don't spend time memcpy-ing the frame from gpu memory to cpu memory and back.
Is it possible using ffmpeg-python ?
The text was updated successfully, but these errors were encountered:
PyTorch seems more promising. TorchAudio (a library for audio and signal processing with PyTorch) talks here about video:
Using NVIDIA’s GPU decoder and encoder, it is also possible to pass around CUDA Tensor directly, that is decode video into CUDA tensor or encode video from CUDA tensor, without moving data from/to CPU.
I would like to decode a video using complex_filter and nvdec hardware acceleration.
To have it be as fast as possible I would like the decoded frame to be passed to tensorflow directly without leaving the gpu ram so that we don't spend time memcpy-ing the frame from gpu memory to cpu memory and back.
Is it possible using ffmpeg-python ?
The text was updated successfully, but these errors were encountered: