1.0.2 • Published 7 years ago

podcast-chapter-parser-audacity v1.0.2

Weekly downloads
11
License
MIT
Repository
github
Last release
7 years ago

Podcast Chapter Parser for Audacity

Podcast Chapter Parser for Audacity label file.

Installation

npm install podcast-chapter-parser-audacity

Example

var Audacity = require('podcast-chapter-parser-audacity');

var chapters = Audacity.parse("1.200000	1.200000	Intro\n20.500000	20.500000	Say Hello");
// =>
// [
//     { start: 1200, title: "Intro" },
//     { start: 20500, title: "Say Hello" }
// ]

Development

npm install
npm test

Changelog

1.0.2 - 2017-09-21

  • accept comma as time separator

1.0 - 2017-02-17

  • Release
1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago