@mtillmann/chapters 0.0.2 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -206,6 +206,7 @@ declare class PySceneDetect extends Base {
206
206
  }
207
207
 
208
208
  declare class Scenecut extends Base {
209
+ supportsPrettyPrint: boolean;
209
210
  filename: string;
210
211
  mimeType: string;
211
212
  frameRate: number;
package/dist/index.js CHANGED
@@ -1213,6 +1213,7 @@ var AppleHLS = class extends Base {
1213
1213
 
1214
1214
  // src/Formats/Scenecut.ts
1215
1215
  var Scenecut = class extends Base {
1216
+ supportsPrettyPrint = true;
1216
1217
  filename = "scene-cuts.json";
1217
1218
  mimeType = "application/json";
1218
1219
  frameRate = 30;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mtillmann/chapters",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "description": "library that manages and converts chapters of multiple formats",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/readme.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  # chapters
4
4
 
5
- Create, manage and convert chapters for 17 chapters formats:
5
+ Supported formats:
6
6
 
7
7
  | class | description | key | ext | info |
8
8
  |-------------------------------------|------------------------------|----------------|--------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------|
@@ -22,7 +22,7 @@ Create, manage and convert chapters for 17 chapters formats:
22
22
  | PodloveJson | Podlove Simple Chapters JSON | podlovejson | `json` | [source](https://github.com/podlove/chapters#:~:text=org/%3E-,Encode%20to%20JSON,-iex%3E%20Chapters) |
23
23
  | MP4Chaps | MP4Chaps | mp4chaps | `txt` | [source](https://github.com/podlove/chapters#:~:text=%3Achapters%3E-,Encode%20to%20mp4chaps,-iex%3E%20Chapters) |
24
24
  | AppleHLS | Apple HLS Chapters | applehls | `json` | [spec](https://developer.apple.com/documentation/http-live-streaming/providing-javascript-object-notation-json-chapters), partial support |
25
- | Scenecut | Scenecut | scenecut | `json` | [source](https://github.com/slhck/scenecut-extractor#:~:text=cuts%20in%20JSON-,format,-%3A) |
25
+ | Scenecut | Scenecut format | scenecut | `json` | [source](https://github.com/slhck/scenecut-extractor#:~:text=cuts%20in%20JSON-,format,-%3A) |
26
26
 
27
27
  ## Installation
28
28