@lumen5/beamcoder 0.0.1 → 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.
@@ -4,8 +4,6 @@
4
4
  name: Node.js Package
5
5
 
6
6
  on:
7
- push:
8
- branches: [ "add-ci" ]
9
7
  release:
10
8
  types: [created]
11
9
 
package/binding.gyp CHANGED
@@ -92,10 +92,12 @@
92
92
  "include_dirs" : [
93
93
  "/usr/local/Cellar/ffmpeg@5/5.1.3/include/",
94
94
  "/opt/homebrew/Cellar/ffmpeg@5/5.1.3/include/",
95
+ "/opt/homebrew/Cellar/ffmpeg@5/5.1.4_4/include/",
95
96
  ],
96
97
  "library_dirs": [
97
98
  "/usr/local/Cellar/ffmpeg@5/5.1.3/lib/",
98
99
  "/opt/homebrew/Cellar/ffmpeg@5/5.1.3/lib/",
100
+ "/opt/homebrew/Cellar/ffmpeg@5/5.1.4_4/lib/",
99
101
  ]
100
102
  }],
101
103
  ]
package/index.js CHANGED
@@ -22,10 +22,6 @@
22
22
  const beamcoder = require('bindings')('beamcoder');
23
23
  const beamstreams = require('./beamstreams.js');
24
24
 
25
- // Provide useful debug on segfault-related crash
26
- const SegfaultHandler = require('segfault-handler');
27
- SegfaultHandler.registerHandler('crash.log');
28
-
29
25
  const splash = `Aerostat Beam Coder Copyright (C) 2019 Streampunk Media Ltd
30
26
  GPL v3.0 or later license. This program comes with ABSOLUTELY NO WARRANTY.
31
27
  This is free software, and you are welcome to redistribute it
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lumen5/beamcoder",
3
- "version": "0.0.1",
3
+ "version": "0.0.3",
4
4
  "description": "Node.js native bindings to FFmpeg.",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -34,8 +34,7 @@
34
34
  },
35
35
  "homepage": "https://github.com/Streampunk/beamcoder#readme",
36
36
  "dependencies": {
37
- "bindings": "^1.5.0",
38
- "segfault-handler": "^1.3.0"
37
+ "bindings": "^1.5.0"
39
38
  },
40
39
  "devDependencies": {
41
40
  "eslint": "^8.9.0",