external file for image series #30
-
In addition to a bunch of raw and processed data, I'm trying to create an image series in the nwb file to store a video. Is it an acceptable practice to store data behind a web url as an external file arg thus reducing the nwb file size substantially? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
@satra and @yarikoptic, this is a current challenge for us. HDF5 does not currently support popular video codecs, and even if you use gzip the file size is still huge in comparison to the original video files. NWB can get around this by allowing you to store the video externally and put a relative path to that video in the As @Saksham20 has noted, one potential solution is to host the video online, and have the |
Beta Was this translation helpful? Give feedback.
@satra and @yarikoptic, this is a current challenge for us. HDF5 does not currently support popular video codecs, and even if you use gzip the file size is still huge in comparison to the original video files. NWB can get around this by allowing you to store the video externally and put a relative path to that video in the
ImageSeries
object of an NWB file. However, it does not currently appear to be possible to do this with DANDI. When youdandi organize
, only NWB files are considered and rearranged. Do we want to support external video files in DANDI? Is it currently possible? If so, what would be the best practice way to do this?As @Saksham20 has noted, one potential solution is to ho…