music

package
v0.19.6 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 24, 2019 License: MIT Imports: 24 Imported by: 2

Documentation

Index

Constants

View Source
const (
	FlacExt = ".flac"
	Mp3Ext  = ".mp3"
	M3uExt  = ".m3u"
	OpusExt = ".opus"
	JpgExt  = ".jpg"
)
View Source
const (
	AdditionalMetadataDir = "Metadata"
)

Variables

This section is empty.

Functions

func ContainsMusic

func ContainsMusic(directoryPath string) bool

ContainsMusic returns true if it contains mp3 or flac files.

func GetAllFLACs

func GetAllFLACs(directoryPath string) []string

GetAllFLACs returns all FLAC files found in a directory

func GetAllPlaylists added in v0.12.0

func GetAllPlaylists(directoryPath string) []string

GetAllPlaylists returns all m3u files found in a directory

func GetFirstFLACFound

func GetFirstFLACFound(directoryPath string) string

GetFirstFLACFound returns the first FLAC file found in a directory

Types

type Release added in v0.16.0

type Release struct {
	Path         string
	MetadataPath string
	Flacs        []*Track
	Cover        string
}

Release struct to manipulate a folder containing FLAC files and a cover.

func New added in v0.19.4

func New(path string) *Release

func NewWithExternalMetadata added in v0.19.4

func NewWithExternalMetadata(path, metadataPath string) *Release

func (*Release) Analyze added in v0.16.0

func (r *Release) Analyze() error

Analyze the release folder

func (*Release) Check added in v0.19.3

func (r *Release) Check() error

Check the flac md5.

func (*Release) CheckEncoding added in v0.18.0

func (r *Release) CheckEncoding() error

CheckEncoding will return an error if the flac encoding (bit depth/Hz) varies among the Release's FLACS.

func (*Release) CheckTags added in v0.16.0

func (r *Release) CheckTags() error

CheckTags from FLACs

func (*Release) CleanTags added in v0.16.0

func (r *Release) CleanTags(removeAllArt bool) error

CleanTags from FLACs

func (*Release) GenerateCombinedSpectrogram added in v0.18.2

func (r *Release) GenerateCombinedSpectrogram() (string, error)

GenerateCombinedSpectrogram for all FLACs This generates slices of combinedSliceWindowS seconds centered around the middle of each song, then combines all slices in a single png. It should allow seeing at a glance of a single file is something looks like a lossy mastered flac.

func (*Release) GenerateSpectrograms added in v0.16.0

func (r *Release) GenerateSpectrograms(title string) ([]string, error)

GenerateSpectrograms for all FLACs

func (Release) NumberOfDiscs added in v0.19.5

func (r Release) NumberOfDiscs() int

func (*Release) Recompress added in v0.16.0

func (r *Release) Recompress() error

Recompress FLACs

func (*Release) TranscodeTo320 added in v0.18.0

func (r *Release) TranscodeTo320(cbr320FolderName string) error

TranscodeTo320 a given Release's FLAC files

func (*Release) TranscodeToV0 added in v0.18.0

func (r *Release) TranscodeToV0(v0FolderName string) error

TranscodeToV0 a given Release's FLAC files

type Track added in v0.18.0

type Track struct {
	Path            string     `json:"-"`
	Filename        string     `json:"filename"`
	MD5             string     `json:"md5"`
	BitDepth        string     `json:"bit_depth"`
	SampleRate      string     `json:"sample_rate"`
	TotalSamples    string     `json:"total_samples"`
	Duration        string     `json:"duration"`
	DurationSeconds float32    `json:"-"`
	Fingerprint     string     `json:"fingerprint,omitempty"`
	Tags            *TrackTags `json:"tags"`
	HasCover        bool       `json:"has_cover"`
	CoverSize       int        `json:"cover_size"`
}

func NewTrack added in v0.18.0

func NewTrack(path, filename string) (*Track, error)

func (*Track) FullPath added in v0.18.0

func (t *Track) FullPath() string

func (*Track) HasMinimalTags added in v0.18.0

func (t *Track) HasMinimalTags() bool

func (*Track) String added in v0.18.0

func (t *Track) String() string

type TrackTags added in v0.18.0

type TrackTags struct {
	Number      string
	TotalTracks string
	DiscNumber  string
	Artist      string
	AlbumArtist string
	Title       string
	Description string
	Year        string
	Genre       string
	Performer   string
	Composer    string
	Album       string
	Label       string
	OtherTags   map[string]string
}

func NewTrackMetadata added in v0.18.0

func NewTrackMetadata(tags map[string]string) (*TrackTags, error)

func (*TrackTags) PaddedNumber added in v0.19.6

func (tm *TrackTags) PaddedNumber() string

PaddedNumber for track

func (*TrackTags) String added in v0.18.0

func (tm *TrackTags) String() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL