Ignore:
Timestamp:
2011-06-01T12:33:42+12:00 (13 years ago)
Author:
sjm84
Message:

Updating the ExifTool perl modules

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone2/perllib/cpan/Image/ExifTool/Vorbis.pm

    r16842 r24107  
    1616use Image::ExifTool qw(:DataAccess :Utils);
    1717
    18 $VERSION = '1.01';
     18$VERSION = '1.03';
    1919
    2020my $MAX_PACKETS = 2;    # maximum packets to scan from each stream at start of file
     
    5555        Format => 'int32u',
    5656        RawConv => '$val || undef',
     57        PrintConv => 'ConvertBitrate($val)',
    5758    },
    5859    13 => {
     
    6061        Format => 'int32u',
    6162        RawConv => '$val || undef',
     63        PrintConv => 'ConvertBitrate($val)',
    6264    },
    6365    17 => {
     
    6567        Format => 'int32u',
    6668        RawConv => '$val || undef',
     69        PrintConv => 'ConvertBitrate($val)',
    6770    },
    6871);
     
    151154            Image::ExifTool::AddTagToTable($tagTablePtr, $tag, { Name => $name });
    152155        }
    153         $exifTool->HandleTag($tagTablePtr, $tag, $val,
     156        $exifTool->HandleTag($tagTablePtr, $tag, $exifTool->Decode($val, 'UTF8'),
    154157            Index   => $index,
    155158            DataPt  => $dataPt,
     
    197200
    198201    # must first check for leading/trailing ID3 information
    199     unless ($exifTool->{DONE_ID3}) {
     202    unless ($exifTool->{DoneID3}) {
    200203        require Image::ExifTool::ID3;
    201204        Image::ExifTool::ID3::ProcessID3($exifTool, $dirInfo) and return 1;
     
    330333=head1 AUTHOR
    331334
    332 Copyright 2003-2007, Phil Harvey (phil at owl.phy.queensu.ca)
     335Copyright 2003-2011, Phil Harvey (phil at owl.phy.queensu.ca)
    333336
    334337This library is free software; you can redistribute it and/or modify it
Note: See TracChangeset for help on using the changeset viewer.