This perl module allows you to fetch or manipulate header infos in ogg-vorbis files (similar to audio/p5-MP3-Info) Example (from the man page), that prints all header entries: #!/usr/bin/perl -w use strict; use Ogg::Vorbis::Header; my $ogg = Ogg::Vorbis::Header->new("song.ogg"); while (my ($k, $v) = each %{$ogg->info}) { print "$k: $v\n"; } foreach my $com ($ogg->comment_tags) { print "$com: $_\n" foreach $ogg->comment($com); } How-To-Repeat: N/A
Responsible Changed From-To: freebsd-ports-bugs->mat Take
State Changed From-To: open->closed Port added, thanks !