Extracts media files (AVI, Ogg, Wave, PNG, ...) that are embedded within other files.
Go to file
Mathias Panzenböck ed3e8de46f less stupid bound checks 2012-12-28 21:07:42 +01:00
Makefile added midi support 2012-12-28 18:23:27 +01:00
README.md added midi support 2012-12-28 18:23:27 +01:00
audioextract.c less stupid bound checks 2012-12-28 21:07:42 +01:00
audioextract.h less stupid way to define magics 2012-12-28 20:01:40 +01:00
id3.c less stupid bound checks 2012-12-28 21:07:42 +01:00
id3.h less stupid way to define magics 2012-12-28 20:01:40 +01:00
midi.c less stupid bound checks 2012-12-28 21:07:42 +01:00
midi.h less stupid way to define magics 2012-12-28 20:01:40 +01:00
mpeg.c less stupid bound checks 2012-12-28 21:07:42 +01:00
mpeg.h added support for mpeg (without tags) 2012-12-27 18:17:49 +01:00
ogg.c less stupid bound checks 2012-12-28 21:07:42 +01:00
ogg.h less stupid way to define magics 2012-12-28 20:01:40 +01:00
wave.c less stupid bound checks 2012-12-28 21:07:42 +01:00
wave.h less stupid way to define magics 2012-12-28 20:01:40 +01:00

README.md

Audioextract

Extract audio files that are embedded within other files.

Setup

make
make install PREFIX=/usr

Usage

audioextract [option...] <filename> [<filename> ...]

Examples

Extract .wav, .aif and .ogg (might actually be .flac, .opus or .ogm) files from the file data.bin and store them in the ~/Music directory.

audioextract -f wave,ogg -o ~/Music data.bin

Extract .mp3, .mp2 and .mp1 files (with or without ID3v2 tags). The mpeg option yields a lot of false positives because there is no nice way to unambigiously detect MPEG files. These false positives are however usually very small, so using the --min-size one can hopefully extract only real MPEG files.

audioextract -f id3v2,mpeg --min-size 100k -o ~/Music data.bin

Options

-h, --help             Print this help message.
-q, --quiet            Do not print status messages.
-f, --formats=FORMATS  Comma separated list of formats (file magics) to extract.
                       Supported formats:
                         all      all supported formats
                         default  the default set of formats (AIFF, ID3v2, Ogg, RIFF, MIDI)
                         aiff     big-endian (Apple) wave files
                         id3v2    MPEG files with ID3v2 tags at the start
                         midi     MIDI files
                         mpeg     any MPEG files (e.g. MP3)
                         ogg      Ogg files (Vorbis, FLAC, Opus, Theora, etc.)
                         riff     little-endian (Windows) wave files
                         wave     both RIFF and AIFF wave files

                       WARNING: Because MPEG files do not have a nice file magic, using
                       the 'mpeg' format may cause *a lot* of false positives. Nowadays
                       MP3 files usually have an ID3v2 tag at the start, so using the
                       'id3v2' format is the better option anyway.

                       NOTE: When using only the 'mpeg' format but not 'id3v2' any ID3v2
                       tag will be stripped. ID3v1 tags will still be kept.

                       If '-' is written before a format name the format will be
                       removed from the set of formats to extract. E.g. extract
                       everything except wave files:

                         audioextract --formats=all,-wave data.bin

-o, --output=DIR       Directory where extracted files should be written. (default: ".")
-m, --min-size=SIZE    Minumum size of extracted files (skip smaller). (default: 0)
-x, --max-size=SIZE    Maximum size of extracted files (skip larger).
                       (default: max. possible size_t value)

                       The last character of SIZE may be one of the following:
                         B (or none)  for bytes
                         k            for Kilobytes (units of 1024 bytes)
                         M            for Megabytes (units of 1024 Kilobytes)
                         G            for Gigabytes (units of 1024 Megabytes)
                         T            for Terabytes (units of 1024 Gigabytes)