lame icon indicating copy to clipboard operation
lame copied to clipboard

mp3: only MPEG version 1 (want 3; got 2) is supported

Open andrewarrow opened this issue 5 years ago • 0 comments

I get this error:

mp3: only MPEG version 1 (want 3; got 2) is supported

when trying to decode the result of my mp3 using:

github.com/hajimehoshi/go-mp3

if h.ID() != consts.Version1 {
		return nil, 0, fmt.Errorf("mp3: only MPEG version 1 (want %d; got %d) is supported", consts.Version1, h.ID())

andrewarrow avatar Apr 23 '20 06:04 andrewarrow