Skip to content

Commit

Permalink
Update README to use go-flac V2
Browse files Browse the repository at this point in the history
Signed-off-by: eternal-flame-AD <[email protected]>
  • Loading branch information
eternal-flame-AD committed Aug 2, 2024
1 parent e2254dd commit 2982489
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# flacvorbis

[![Documentation](https://godoc.org/github.com/go-flac/flacvorbis?status.svg)](https://godoc.org/github.com/go-flac/flacvorbis)
[![Documentation](https://godoc.org/github.com/go-flac/flacvorbis?status.svg)](https://godoc.org/github.com/go-flac/flacvorbis/v2)
[![Build Status](https://travis-ci.org/go-flac/flacvorbis.svg?branch=master)](https://travis-ci.org/go-flac/flacvorbis)
[![Coverage Status](https://coveralls.io/repos/github/go-flac/flacvorbis/badge.svg?branch=master)](https://coveralls.io/github/go-flac/flacvorbis?branch=master)

Expand All @@ -13,8 +13,8 @@ The following example extracts existing tags from a FLAC file. It returns the la
package example

import (
"github.com/go-flac/flacvorbis"
"github.com/go-flac/go-flac"
"github.com/go-flac/flacvorbis/v2"
"github.com/go-flac/go-flac/v2"
)

func extractFLACComment(fileName string) (*flacvorbis.MetadataBlockVorbisComment, int) {
Expand Down Expand Up @@ -43,8 +43,8 @@ The following example adds a title to the FLAC metadata. It considers whether th
package example

import (
"github.com/go-flac/flacvorbis"
"github.com/go-flac/go-flac"
"github.com/go-flac/flacvorbis/v2"
"github.com/go-flac/go-flac/v2"
)

func addFLACTitle(fileName string, title []byte) {
Expand Down

0 comments on commit 2982489

Please sign in to comment.