Bug 71577

Summary: new port: audio/p5-Ogg-Vorbis-Header: fetch/manipulate infos in .ogg files
Product: Ports & Packages Reporter: Simon Barner <barner>
Component: Individual Port(s)Assignee: Mathieu Arnold <mat>
Status: Closed FIXED    
Severity: Affects Only Me    
Priority: Normal    
Version: Latest   
Hardware: Any   
OS: Any   
Attachments:
Description Flags
p5-Ogg-Vorbis-Header.shar none

Description Simon Barner 2004-09-11 02:40:19 UTC
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
Comment 1 Mathieu Arnold freebsd_committer freebsd_triage 2004-09-21 10:16:08 UTC
Responsible Changed
From-To: freebsd-ports-bugs->mat

Take
Comment 2 Mathieu Arnold freebsd_committer freebsd_triage 2004-10-12 12:03:17 UTC
State Changed
From-To: open->closed

Port added, thanks !