Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

general: linux audio extract now considers actual header len #57

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 15 additions & 3 deletions content/docs/wiki/general/audio-file-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,18 @@ But the in experiments used encoder did not have an obvious feature to do this.

**We have developed a tool called [teddy](https://github.com/toniebox-reverse-engineering/teddy) to encode and decode these files.**

# Audio file extraction with Linux OS
- Remove Header of the file with ´dd bs=4096 skip=1 if=500304E0 of=trim.ogg´
- then just use ffmpeg to convert it into mp3 ´ffmpeg -i trim.ogg done.mp3´
# Audio file extraction with Linux OS and bash shell

1. read the *header_len* (in hex): `dd status=none if=50012345 bs=1 count=4 | xxd -plain`
2. convert to decimal and add 4 in order to get the length (in decimal) of the whole header
3. read the audio_data into file: `dd if=50012345 bs=1 skip="${header_len}" of=50012345.audio_data.ogg`
4. (optional) convert audio_data from ogg to mp3: `ffmpeg -i 50012345.audio_data.ogg 50012345.audio_data.mp3`

The same procedure as one block of spagetthi code for easier copy&paste:

```bash
inputfile=50012345
header_len="$((4+0x"$(dd status=none if="${inputfile}" bs=1 count=4 | xxd -plain)"))"
dd if="${inputfile}" bs=1 skip="${header_len}" of=${inputfile}.audio_data.ogg
ffmpeg -i "${inputfile}.audio_data.ogg" "${inputfile}.audio_data.mp3"
```