Index: INSTALL.txt
===================================================================
RCS file: INSTALL.txt
diff -N INSTALL.txt
--- /dev/null	1 Jan 1970 00:00:00 -0000
+++ INSTALL.txt	26 Nov 2009 00:15:29 -0000
@@ -0,0 +1,19 @@
+INSTALL
+-------
+1. Place the entire getid3 directory into your modules directory
+   (sites/all/modules is the usual location).
+2. Create a new folder for the getID3 library at:
+     cd YOUR-DRUPAL-ROOT
+     mkdir -p sites/all/libraries/getid3
+3. Go to http://www.getid3.org/ and download the latest stable version
+   (currently 1.7.9) into the new directory:
+     cd sites/all/libraries/getid3
+     wget "http://downloads.sourceforge.net/project/getid3/getID3%28%29%201.x/1.7.9/getid3-1.7.9.zip"
+4. Unzip the contents of the zip file into sites/all/modules/getid3/ so that
+   write.php is located in sites/all/libraries/getid3/getid3/:
+     unzip unzip getid3-1.7.9.zip
+5. Delete the demos directory:
+     rm -r demos/
+6. Go to Administer > Site building > Modules and enable the GetID3 module.
+7. Go to Administer > Settings > getID3. If you see the version you just
+   downloaded, the module is installed correctly.
Index: getid3.module
===================================================================
RCS file: /cvs/drupal-contrib/contributions/modules/getid3/getid3.module,v
retrieving revision 1.12
diff -u -p -r1.12 getid3.module
--- getid3.module	15 Oct 2008 18:55:19 -0000	1.12
+++ getid3.module	26 Nov 2009 00:15:30 -0000
@@ -1,7 +1,7 @@
 <?php
 // $Id: getid3.module,v 1.12 2008/10/15 18:55:19 drewish Exp $
 
-define('GETID3_RECOMMEND_VERSION', '1.7.8b3');
+define('GETID3_RECOMMEND_VERSION', '1.7.9');
 
 /**
  * Implementation of hook_help
@@ -54,7 +54,7 @@ function getid3_instance() {
     $id3 = new getID3();
     // MD5 is a big performance hit. Disable it by default.
     $id3->option_md5_data = FALSE;
-    $id3->option_md5_data_source = FALSE; 
+    $id3->option_md5_data_source = FALSE;
     $id3->encoding = 'UTF-8';
   }
   return $id3;
@@ -148,7 +148,7 @@ function _getid3_admin_settings_check_pa
  * Returns the path where getID3() is installed.
  */
 function getid3_get_path() {
-  return variable_get('getid3_path', drupal_get_path('module', 'getid3') . '/getid3/getid3');
+  return variable_get('getid3_path', 'sites/all/libraries/getid3/getid3');
 }
 
 /**
