Enrico Shippole
Enrico Shippole
```python import daft import time start_time = time.perf_counter() df = daft.read_video_frames( path="_9RMpogduZM.mp4", image_height=80, image_width=80, is_key_frame=True, ) df.show() end_time = time.perf_counter() elapsed_time = end_time - start_time print(f"Function executed in: {elapsed_time:.6f} seconds")...
Some videos do work, but they take quite a substantial amount of time to read/resize: ``` ╭────────────────────────────────┬─────────────┬────────────┬─────────────────┬───────────┬───────────┬────────────────┬──────────────┬─────────────────────╮ │ path ┆ frame_index ┆ frame_time ┆ frame_time_base ┆ frame_pts ┆ frame_dts ┆...
I then wonder if there is a large chunk of the videos that we previously downloaded that are entirely incompatible lol
> Ideally the youtube downloading would be able to stream and decode, but this was erroneous and flakey. Under the hood (AFAIK) yt-dlp is reading a playlist stream (m3u8) which...
> [@conceptofmind](https://github.com/conceptofmind) are you getting this error for most videos or is this an exceptional case? From what you've described, it seems frequent. Could you please attach the exact video...