
Originally Posted by
lanceh
well i've gotten MetaGooFil working in BT4. you need to download the latest version, 1.4a, then make two changes.
- add the path to python on the first line #!/usr/bin/python
- comment out the existing path to the variable, extcommand, and uncomment the correct one
so at this point it's downloading all of the files it finds but not pulling the usernames. well at least not with the batch of PDF's i'm targeting. but since the files are now local they can be processed with extract on the cmd line
Just to verify this fix I did the same thing and it works now.
Code:
#nano metagoofil.py
Make sure yours looks like the following
Code:
#Win
##extcommand='c:\extractor\\bin\extract.exe -l libextractor_ole2'
#OSX
#extcommand='/opt/local/bin/extract'
#Cygwin
#extcommand='/cygdrive/c/extractor/bin/extract.exe'
extcommand='/usr/bin/extract'
Then save and exit.