Skip to content

Read videos from memory #6603

Open
Open
@vedantroy

Description

@vedantroy

🚀 The feature

I have a lot of small videos (3 million video files), in an attempt to reduce disk bottleneck, I store all the videos in LMDB using: https://lmdb.readthedocs.io/en/release/. I would love the ability to read videos from memory.

Motivation, pitch

My training (8xA100 GPUs) process is data starved. I'm pretty sure the issue is disk throughput, hence my usage of LMDB. Allowing torchvision to read videos from memory would help me use LMDB for storing binary files.

Alternatives

I am about to try manually doing this using pyav.

Additional context

No response

cc @pmeier

Activity

pmeier

pmeier commented on Sep 19, 2022

@pmeier
Collaborator

Could you clarify what you mean by "read videos from memory"? Do you want to a dataset that allows you to read data from a LMDB?

If yes, you can have a look at the LSUN dataset that stores images inside multiple LMDBs. There is probably room for optimization, but this should get you started.

YosuaMichael

YosuaMichael commented on Sep 26, 2022

@YosuaMichael
Contributor
jdsgomes

jdsgomes commented on Sep 27, 2022

@jdsgomes
Contributor

Hi @vedantroy thank you for the feature request. I am actually planning to add this functionality to our VideoReader. I will keep you posted with progress but the ETA is about 2 weeks.

self-assigned this
on Sep 30, 2022
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions

    Read videos from memory · Issue #6603 · pytorch/vision