https://github.com/eteubert/podcast-chapter-parser-audacity
Parse Audacity podcast chapters format into JSON
https://github.com/eteubert/podcast-chapter-parser-audacity
audacity javascript npm-package
Last synced: about 2 months ago
JSON representation
Parse Audacity podcast chapters format into JSON
- Host: GitHub
- URL: https://github.com/eteubert/podcast-chapter-parser-audacity
- Owner: eteubert
- Created: 2017-02-17T04:34:18.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-09-21T09:48:45.000Z (over 8 years ago)
- Last Synced: 2025-10-19T12:54:16.155Z (8 months ago)
- Topics: audacity, javascript, npm-package
- Language: JavaScript
- Homepage: https://www.npmjs.com/package/podcast-chapter-parser-audacity
- Size: 4.88 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Podcast Chapter Parser for Audacity
Podcast Chapter Parser for Audacity label file.
## Installation
```bash
npm install podcast-chapter-parser-audacity
```
## Example
```js
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