I'm trying to access a large tarball (tar.gz
) in python. The tarball contains multiple mp3
or wav
files. I'd like to read each file individually and do the processing that I would like to do.
I did look at a few of the suggestions available here: this and this.
Both solutions offer reading the table of contents, but not accessing/reading each file at a time. The other solutions I have seen refer to extracting the entire tarball - I do not have so much place left on my disk to do so.
Any help in this regard will be appreciated.