Daft
Daft copied to clipboard
read_video_frames: FATAL: exception not rethrown Aborted (core dumped)
trafficstars
Describe the bug
Hello,
I am trying to read a video using the read_video_frames, and I am receiving the error below:
FATAL: exception not rethrown
Aborted (core dumped)
The video is 1 minute long, and I have 128 GB of RAM, so I do not think it should be a memory error.
To Reproduce
Code to reproduce:
import daft
df = daft.read_video_frames(
path="_9RMpogduZM.mp4",
image_height=480,
image_width=640,
is_key_frame=True,
)
df.show()
Expected behavior
Should read the frames from the video.
Component(s)
Other
Additional context
The video can be found here: https://www.youtube.com/watch?v=_9RMpogduZM
Thank you,
Enrico