Quote:
Originally Posted by bcbane
I'm trying to complete this final step, but I'm on a OSX and don't have access to 7zip to open the data.stgz file. Anybody have a suggestion for how I can open it up and get the voice files?
|
I don't know how it worked for @usq_charles, but these instructions shoudl work.
The data.stgz is an "Amazon Signed Tar.GZ file", which
To convert it in one step you can use kindletool again to run
Code:
kindletool.exe extract data.stgz data_dir
If you want to do it by hand you can run
Code:
dd if=data.stgz of=data.tar.gz bs=1 skip=320
gzip -d data.tar.gz
tar xvf data.tar
or in one go:
Code:
dd if=data.stgz bs=1 skip=320 | tar xzvf -