Skip to content

A Swift library to read chapters from MP4/M4A files

Notifications You must be signed in to change notification settings

CrunchyBagel/OutcastMP4

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

OutcastMP4

A Swift library to read chapters from MP4/M4A files

Sample Usage

let path = URL(fileURLWithPath: "/path/to/file.m4a")
    
let mp4File = try MP4File(localUrl: path)
    
let chapters = try mp4File.readChapters()
    
for (i, chapter) in chapters.enumerated() {
    print("\(i + 1). \(chapter.title)")
}

About

A Swift library to read chapters from MP4/M4A files

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages