View Single Post
Old 07-24-2017, 10:19 PM   #14
coplate
Guru
coplate ought to be getting tired of karma fortunes by now.coplate ought to be getting tired of karma fortunes by now.coplate ought to be getting tired of karma fortunes by now.coplate ought to be getting tired of karma fortunes by now.coplate ought to be getting tired of karma fortunes by now.coplate ought to be getting tired of karma fortunes by now.coplate ought to be getting tired of karma fortunes by now.coplate ought to be getting tired of karma fortunes by now.coplate ought to be getting tired of karma fortunes by now.coplate ought to be getting tired of karma fortunes by now.coplate ought to be getting tired of karma fortunes by now.
 
Posts: 645
Karma: 1888888
Join Date: Jun 2009
Device: prs-505, Kindle Keyboard 3g, PW3
Quote:
Originally Posted by bcbane View Post
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 -

Last edited by coplate; 07-24-2017 at 10:24 PM.
coplate is offline   Reply With Quote