Skip to content

Pure go library for joining mp3 files to one.

License

Notifications You must be signed in to change notification settings

soapiestwaffles/mp3join

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MP3 Joiner (Golang Library)

Pure go library for joining mp3 files to one.

The library will read all files in memery, so it can not process big files.

Usage

joiner := mp3join.New()

// readers is the input mp3 files
for reader := range readers {
    err := j.Append(reader)
    if err != nil {
        return err
    }
}

dest := joiner.Reader()

// dest is a mp3 output reader

About

Pure go library for joining mp3 files to one.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Go 100.0%