I am trying to write a Perl code for editing the ID3V2 tags i.e artist name for start i can seek and read it but when i try to write new it just replace all the content of the file with the new artist name and corrupt the file i am new to this so kindly give me some direction as i am not suppose to use library below is the code i have tried.
#!/usr/bin/perl
use Fcntl qw( SEEK_SET );
my($fh, $filename, $byte_position, $byte_value);
$filename = $ARGV[0];
open(IN, "+>", $filename);
#open IN, $filename;
seek(IN,0,SEEK_SET);
read IN, $temp, 128;
print $temp;
print "\n";
seek(IN,14,SEEK_SET);
read IN, $temp, 16;
print "Artist is :" .$temp;
print "\n";
sysseek(IN,14,SEEK_SET);
#want to replace the Artist Name with new one.
syswrite (IN,$newArtist);
print "\n";
close(IN);
Some thing that worked for me in case some one is looking for a solutions here.