How to extract MP3 from a PDF file?

4

1

I Have a PDF file that has a lot of MP3 attached to it.

How should I extract them?

DSaad

Posted 2015-06-01T19:15:24.497

Reputation: 337

1

What tools do you have? This cannot be done with any PDF Adobe tools at this time.

– Ramhound – 2015-06-01T19:19:52.117

You could try using File Juicer.

– NReilingh – 2015-06-01T19:55:57.867

It's pointless suggesting options for you like @NReilingh has so kindly done until you mention your OS. – Karan – 2015-06-01T19:59:26.953

@Karan I use windows 8.1. – DSaad – 2015-06-01T20:01:58.597

Answers

4

You can use PDFtk for this as follows:

pdftk <PDF file> unpack_files output <output dir>

or

pdftk <PDF file> unpack_files output PROMPT 

Karan

Posted 2015-06-01T19:15:24.497

Reputation: 51 857

0

That isn't a supported feature if you using in Acrobat which can't help you. If the PDF is unsecured and you have the legal rights to extract the audio, it would be possible to locate and decompress the raw file data from the PDF file using third-party tools to read the low-level file structure (a hex editor or Cos editor)

vembutech

Posted 2015-06-01T19:15:24.497

Reputation: 5 693