L
Larry
Hi,
I've been using a perl module that writes binary data on a file...now
I would like to save this binary data on a var insted of on a file...the
following si the code:
my $_mp3 = MP3::Tag->new($file);
my $_id3v2 = $_mp3->new_tag("ID3v2");
$_id3v2->add_frame($key, $value);
$_id3v2->write_tag();
I'd rather save the data on a var kept in memory (I must not save the
data on a file!)
so is there anyway to have my $_mp3 = MP3::Tag->new($file); point to a
var?
thanks
I've been using a perl module that writes binary data on a file...now
I would like to save this binary data on a var insted of on a file...the
following si the code:
my $_mp3 = MP3::Tag->new($file);
my $_id3v2 = $_mp3->new_tag("ID3v2");
$_id3v2->add_frame($key, $value);
$_id3v2->write_tag();
I'd rather save the data on a var kept in memory (I must not save the
data on a file!)
so is there anyway to have my $_mp3 = MP3::Tag->new($file); point to a
var?
thanks