n8n-nodes-eranol 0.1.1 → 0.1.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 (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +60 -0
  3. package/package.json +4 -3
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2026 Eranol
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,60 @@
1
+ # n8n-nodes-eranol
2
+
3
+ This is an n8n community node that lets you professionaly process media using the [Eranol FFmpeg API](https://www.eranol.com). Eranol provides a powerful, cloud-based FFmpeg engine for video, audio, and image processing.
4
+
5
+ [n8n](https://n8n.io/) is a [fair-code licensed](https://docs.n8n.io/reference/license/) workflow automation tool.
6
+
7
+ ## Features
8
+
9
+ - **Video Processing**: Trim, watermark, caption, overlay, progressBar, reframe, thumbnail, generate GIF, and more.
10
+ - **Audio Processing**: Denoise, highlights, remove silence, and conversion.
11
+ - **Composition**: Merge multiple images into videos with transitions and background audio.
12
+ - **Conversion**: Batch convert between common video (MP4, WebM), audio (MP3, WAV), and image (JPG, WebP) formats.
13
+ - **Job Management**: Long-running media tasks managed via a robust job system.
14
+
15
+ ## Installation
16
+
17
+ Follow the [installation guide](https://docs.n8n.io/integrations/community-nodes/installation/) in the n8n community nodes documentation.
18
+
19
+ ```bash
20
+ npm install n8n-nodes-eranol
21
+ ```
22
+
23
+ ## Credentials
24
+
25
+ You'll need an API Key from your [Eranol Dashboard](https://www.eranol.com/dashboard).
26
+
27
+ 1. Go to **Credentials** in n8n.
28
+ 2. Select **Eranol API**.
29
+ 3. Paste your **API Key**.
30
+
31
+ ## Resources & Operations
32
+
33
+ ### Video
34
+ - **Add Intro/Outro**: Seamlessly stitch intro or outro videos.
35
+ - **Caption**: Add text overlays or closed captions.
36
+ - **Extract Audio/Images**: Pull assets from your video files.
37
+ - **Generate GIF**: Convert video segments into high-quality GIFs.
38
+ - **Overlay**: Layer images or videos over your footage.
39
+ - **Progress Bar**: Add custom progress bars to your videos.
40
+ - **Reframe**: Automatically adjust video aspect ratios.
41
+ - **Thumbnail**: Generate preview images at specific timestamps.
42
+ - **Trim**: Precise cut operations.
43
+ - **Watermark**: Brand your content with logo overlays.
44
+
45
+ ### Audio
46
+ - **Denoise**: Remove background noise from recordings.
47
+ - **Highlights**: Automatically extract key moments from audio.
48
+ - **Remove Silence**: Tighten up recordings by removing dead air.
49
+
50
+ ### Compose
51
+ - **Merge**: Combine images into a slideshow video with transitions.
52
+
53
+ ### Convert
54
+ - **Video**: MP4, WebM.
55
+ - **Audio**: MP3, WAV.
56
+ - **Image**: JPG, WebP.
57
+
58
+ ## License
59
+
60
+ [MIT](LICENSE)
package/package.json CHANGED
@@ -1,9 +1,9 @@
1
1
  {
2
2
  "name": "n8n-nodes-eranol",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "n8n community node for Eranol FFmpeg media processing API",
5
5
  "license": "MIT",
6
- "homepage": "https://github.com/eranol/n8n-nodes-eranol",
6
+ "homepage": "https://github.com/harshalone/n8n-nodes-eranol",
7
7
  "keywords": [
8
8
  "n8n-community-node-package",
9
9
  "n8n",
@@ -15,11 +15,12 @@
15
15
  ],
16
16
  "author": {
17
17
  "name": "Eranol",
18
+ "email": "harshalone@gmail.com",
18
19
  "url": "https://www.eranol.com"
19
20
  },
20
21
  "repository": {
21
22
  "type": "git",
22
- "url": "https://github.com/eranol/n8n-nodes-eranol.git"
23
+ "url": "https://github.com/harshalone/n8n-nodes-eranol.git"
23
24
  },
24
25
  "scripts": {
25
26
  "build": "n8n-node build",