All Lucene does is provide a way for "Documents" to be added into a structured index and for querries to be executed against that index.
The Nutch crawler (I assume that's what you mean by nutch) just provides an easy way to get unstructured data (ie a website) to get pushed into the index. Just like you can use Solr to easily push xml data into a lucene index.
Nutch plugins simply provide a hook were you can put customer logic. For instance the "parse-pdf" can convert a binary PDF file into one of these "lucene Documents". Basically all it does is use an API that can read PDF documents (pdfbox) to extract the text (this is similar to what "parse-html" does since html has a lot of parts that isn't text, for example all html tags).
So regarding your concern about binary formats, its not difficult to parse, just difficult to get something useful. For instance we can write a "parse-image" plugin that could extract a lot of info about the image (ie name, format, size), it's just that parsing the "face" or the "dog" in the picture is difficult.