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/JVC.pm

    r16842 r24107  
    1313use Image::ExifTool::Exif;
    1414
    15 $VERSION = '1.01';
     15$VERSION = '1.02';
    1616
    1717sub ProcessJVCText($$$);
     
    2424    NOTES => 'JVC EXIF maker note tags.',
    2525    #0x0001 - almost always '2', but '3' for GR-DV700 samples
    26     0x0002 => 'CPUVersions', #PH
     26    0x0002 => { #PH
     27        Name => 'CPUVersions',
     28        # remove trailing nulls/spaces and split at remaining nulls/spaces
     29        ValueConv => '$_=$val; s/(\s*\0)+$//; s/(\s*\0)+/, /g; $_',
     30    },
    2731    0x0003 => { #PH
    2832        Name => 'Quality',
     
    7276        return 0;
    7377    }
    74     my $pos = 0;
    7578    while ($data =~ m/([A-Z]+):(.{3,4})/sg) {
    7679        my ($tag, $val) = ($1, $2);
     
    114117=head1 AUTHOR
    115118
    116 Copyright 2003-2007, Phil Harvey (phil at owl.phy.queensu.ca)
     119Copyright 2003-2011, Phil Harvey (phil at owl.phy.queensu.ca)
    117120
    118121This library is free software; you can redistribute it and/or modify it
Note: See TracChangeset for help on using the changeset viewer.