vote up 4 vote down star
1

I want to parse a PDF file from my C# app and create an audio file off it. How would I do that ?

I'm particularly looking for a good pdf to text library or a way to strip a pdf file off its text.

flag

48% accept rate
At first I though this was a joke, and then I realized you meant listen to the text :) – Zifre Jun 6 at 13:38
I would rather use Acrobat reader! – aJ Jun 6 at 13:39
@Zifre - thank God you cleared that up I was about to burst into tears with this!! – joshcomley Jun 6 at 13:39
The only way I know of to do this is buy software to do it. – Tony Jun 6 at 13:41

9 Answers

vote up 2 vote down

If your sole task is to listen to speech synthesized text from a PDF, how about the Acrobat "Read out loud" function at the bottom of the "View" menu?

link|flag
vote up 2 vote down

As the other posters outlined, first you have to extract the text from the .pdf file. pdf files are an open format now, so you can probably find a parser through Google.

Then you have to extract the text you want to convert to speech from the file, ignoring things like figure titles, page headers, table of contents etc.

Once you've got the text, you need to convert it to speech. This is probably the hardest part.

A while ago I was fiddling around with generating voice files for a gaming mod, since I'm a rotten voice actor.

Cepstral had the best TTS converters I could find. (The free ones had an annoying tendency to insert Cepstral advertisements in the speech, but I could manually edit this out for what I was doing.)

It turns out that there's a speech synthesis markup language which can be used to provide clues to the TTS converter about which syllable to place accents, etc. Here's a linky:

http://www.w3.org/TR/speech-synthesis/

How you go about automatically adding the SSML to the text is a bit beyond me.

Anyway, the TTS converter will produce an audio file, and the final step would be to compress the audio at the desired bit rate in mp3 format.

link|flag
vote up 4 vote down

You preferably have a tagged PDF document as your input document. This means that the document contains tags to mark up the logical structure of the document (typically a PDF document will only contain visual information).

This PDF could then be converted into DAISY format, which is a standard for digital talking books, i.e. an intermediate XML format storing the text of books along with the logical structure and navigation features.

This Daisy XML format can be either converted to an audio format, or you could be using a Daisy reader, a physical device like an MP3 player to listen to the book.

There is a presentation available at the Daisy web site explaining the principles of this toolchain:

Accessible PDF to DAISY/NIMAS Conversion

link|flag
vote up 0 vote down

It's not all that complicated to do, provided that you don't re-invent the wheel, but instead simply reuse existing technology (i.e. text to speech engines like festival), as well as OCR engines to process the PDF files.

The most complicated thing probably is to work with different PDF layouts (columns, rows, embedded graphics,foot notes, URLs etc), which may obfuscate the text recognition process.

However, in general (if this is not supposed to be a learning experience), it is certainly easier to just resort to using existing software solutions:

link|flag
vote up 0 vote down

Take a look at this SAPI tutorial.

link|flag
vote up 0 vote down

On Mac OS X, you can extract the text of the pdf and then pipe it in "say". You should find equivalent synthetisers on other OS.

link|flag
vote up 4 vote down

Use Festival for the text to speech. Various pdf to text api's exist...

link|flag
vote up 2 vote down

You need the Speech SDK from Microsoft. Read an instruction here

link|flag
vote up 0 vote down

I guess it's a hard thing to do. Firstly you need to read the text in that pdf, and then use some mechanism of synthetic voice generation to create the audio content. Then you have to store it as an mp3.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.