Here is what I get: -->
Audio
Enabled Name Version Description
Enabled Name Version Description
Audio 6.x-1.0-unstable3 Allows you to upload and playback audio files.
Depends on: Token (enabled), Views (enabled)
Required by: Audio Attach (disabled), Audio Feeds (enabled), Audio Images (enabled), Audio Import (disabled), Audio iTunes (enabled), Audio Playlist (disabled)
Audio Attach 6.x-1.0-unstable3 Allows audio files to be attached to any node type.
Depends on: Audio (enabled), Content (missing), Nodereference (missing), Token (enabled), Views (enabled)
Required by: Audio Playlist (disabled)
Audio Feeds 6.x-1.0-unstable3 Provide XSPF, PLS, and M3U audio XML feeds.
Depends on: Audio (enabled), Token (enabled), Views (enabled)
Audio Images 6.x-1.0-unstable3 Adds the ability to attach album art to audio nodes.
Depends on: Audio (enabled), Token (enabled), Views (enabled)
Audio Import 6.x-1.0-unstable3 Allows audio module admins to import batches of audio files.
Depends on: Audio (enabled), Token (enabled), Views (enabled)
Audio iTunes 6.x-1.0-unstable3 An iTunes specific RSS plugin for views feeds.
Depends on: Audio (enabled), Views (enabled), Views UI (enabled), Token (enabled)
Audio Playlist 6.x-1.0-unstable3 Provide 'Add to playlist' link to audio content.
Depends on: Audio (enabled), Audio Attach (disabled), Token (enabled), Views (enabled), Content (missing), Nodereference (missing)
----------------------------------------------------------
No audio getid3 module... :(
| Comment | File | Size | Author |
|---|---|---|---|
| #7 | audio_itunes_343773.patch | 939 bytes | drewish |
Comments
Comment #1
drewish commentedyou want to install the getid3 module that's linked to from the audio module's project page
Comment #2
Ryanbach commentedI did install it, but audio getid3 should still show up under modules even if that module is missing...
Info:
getID3() 6.x-1.1 getID3() extracts useful information from multimedia file formats.
Comment #3
Ryanbach commentedEven after I enabled the getid3 module, audio getid3 does NOT show up... so I can't enable it. :(
Comment #4
drewish commentedah, well make sure you unpacked the module correctly and that the .module and .info files are there.
Comment #5
Ryanbach commentedOkay, I removed the audio folder and re-extracted it. It work now thanks.
I did an upgrade from drupal 5, to 6. I ran update.php, now I get this when I create a audio node:
user warning: Unknown column 'author' in 'field list' query: INSERT INTO audio_itunes_item (vid, nid, summary, subtitle, author, block, explicit) VALUES (25, 25, '', '', '', 0, 0) in /home/.name/subname/drupal/includes/common.inc on line 3324.
Comment #6
Ryanbach commentedComment #7
drewish commentedah, yeah the schema had an extra field in it. also switched the order of the block and explicit fields to match the old order.
Comment #9
sleary commentedI've applied your patch to the file and run update.php again, but I'm still getting these errors... is there something else I need to do to force Drupal to apply that schema change?
Comment #10
drewish commentedYou'll probaby need to edit the table and drop that column.... it might be worth adding an update function for.
Comment #11
sleary commentedThanks. It looks like the column has already been dropped, so that's not the problem. I'm getting the same error as Ryanbach @ #5, so I'm guessing the insert statement is still referencing the author column...?
Comment #12
drewish commentedwell it's been removed from the schema so i was assuming that the problem is on the table itself. try the -dev release to see if that helps... oh, actually the code has moved into a new project: http://drupal.org/project/itunes i guess i need an update on this that renames the tables.
Comment #13
drewish commentedjust committed some code to the http://drupal.org/node/350958 so it'll rename the audio_itunes_item table and preserve your data.
Comment #14
sleary commentedThat did it. Thanks!