diff options
author | TheTroll <trolldev@gmail.com> | 2010-03-17 22:42:06 +0100 |
---|---|---|
committer | TheTroll <trolldev@gmail.com> | 2010-03-17 22:42:06 +0100 |
commit | d0640763e648d441510afeb5939106eb8d48731c (patch) | |
tree | f8542d1329646a3968ee8e6cf4640af103ee8aa6 /getid3/module.misc.pdf.php | |
parent | 56cb9c5e115fcf9f6e732d2b2cc95afff66c90ac (diff) | |
download | istreamdev-d0640763e648d441510afeb5939106eb8d48731c.tar.gz istreamdev-d0640763e648d441510afeb5939106eb8d48731c.tar.bz2 |
Timers WIP
Added getID3
Diffstat (limited to 'getid3/module.misc.pdf.php')
-rw-r--r-- | getid3/module.misc.pdf.php | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/getid3/module.misc.pdf.php b/getid3/module.misc.pdf.php new file mode 100644 index 0000000..c6e3294 --- /dev/null +++ b/getid3/module.misc.pdf.php @@ -0,0 +1,32 @@ +<?php +///////////////////////////////////////////////////////////////// +/// getID3() by James Heinrich <info@getid3.org> // +// available at http://getid3.sourceforge.net // +// or http://www.getid3.org // +///////////////////////////////////////////////////////////////// +// See readme.txt for more details // +///////////////////////////////////////////////////////////////// +// // +// module.misc.pdf.php // +// module for analyzing PDF files // +// dependencies: NONE // +// /// +///////////////////////////////////////////////////////////////// + + +class getid3_pdf +{ + + function getid3_pdf(&$fd, &$ThisFileInfo) { + + $ThisFileInfo['fileformat'] = 'pdf'; + + $ThisFileInfo['error'][] = 'PDF parsing not enabled in this version of getID3()'; + return false; + + } + +} + + +?>
\ No newline at end of file |