n8n-nodes-ffmpeg-wasm 1.2.1 → 1.2.2

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.
Files changed (2) hide show
  1. package/README.md +1 -20
  2. package/package.json +11 -2
package/README.md CHANGED
@@ -20,8 +20,6 @@
20
20
 
21
21
  ## Installation
22
22
 
23
- ### Method 1: Install from NPM (Recommended)
24
-
25
23
  ```bash
26
24
  cd ~/.n8n/custom
27
25
  npm install n8n-nodes-ffmpeg-wasm
@@ -29,24 +27,7 @@ npm install n8n-nodes-ffmpeg-wasm
29
27
 
30
28
  Restart n8n and the node will be available in the node panel.
31
29
 
32
- ### Method 2: Install from GitHub
33
-
34
- ```bash
35
- cd ~/.n8n/custom
36
- npm install github:Prakashmaheshwaran/n8n-nodes-ffmpeg-wasm
37
- ```
38
-
39
- ### Method 3: Local Development
40
-
41
- ```bash
42
- git clone https://github.com/Prakashmaheshwaran/n8n-nodes-ffmpeg-wasm.git
43
- cd n8n-nodes-ffmpeg-wasm
44
- npm install
45
- npm run build
46
- npm link
47
- # In your n8n installation directory:
48
- npm link n8n-nodes-ffmpeg-wasm
49
- ```
30
+ > **Note:** This node requires n8n version 1.0 or higher.
50
31
 
51
32
  ## Operations
52
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-ffmpeg-wasm",
3
- "version": "1.2.1",
3
+ "version": "1.2.2",
4
4
  "description": "n8n community node for FFmpeg using ffmpeg.wasm - process audio and video files directly in your workflows",
5
5
  "keywords": [
6
6
  "n8n",
@@ -10,9 +10,18 @@
10
10
  "ffmpeg-wasm",
11
11
  "video",
12
12
  "audio",
13
+ "video-editing",
14
+ "video-processing",
15
+ "video-conversion",
16
+ "video-transcoding",
17
+ "media-processing",
18
+ "media-conversion",
13
19
  "convert",
14
20
  "transcode",
15
- "media"
21
+ "media",
22
+ "webassembly",
23
+ "wasm",
24
+ "workflow-automation"
16
25
  ],
17
26
  "license": "MIT",
18
27
  "homepage": "https://github.com/Prakashmaheshwaran/n8n-nodes-ffmpeg-wasm",