n8n-nodes-eranol 0.2.3 → 0.2.4

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.
@@ -25,6 +25,7 @@ exports.audioDescription = [
25
25
  request: {
26
26
  method: 'POST',
27
27
  url: '/ffmpeg/audio/denoise',
28
+ headers: { 'Content-Type': 'application/json' },
28
29
  },
29
30
  },
30
31
  },
@@ -37,6 +38,7 @@ exports.audioDescription = [
37
38
  request: {
38
39
  method: 'POST',
39
40
  url: '/ffmpeg/audio/highlights',
41
+ headers: { 'Content-Type': 'application/json' },
40
42
  },
41
43
  },
42
44
  },
@@ -49,6 +51,7 @@ exports.audioDescription = [
49
51
  request: {
50
52
  method: 'POST',
51
53
  url: '/ffmpeg/audio/remove-silence',
54
+ headers: { 'Content-Type': 'application/json' },
52
55
  },
53
56
  },
54
57
  },
@@ -25,6 +25,7 @@ exports.composeDescription = [
25
25
  request: {
26
26
  method: 'POST',
27
27
  url: '/ffmpeg/video/concat',
28
+ headers: { 'Content-Type': 'application/json' },
28
29
  },
29
30
  },
30
31
  },
@@ -37,6 +38,7 @@ exports.composeDescription = [
37
38
  request: {
38
39
  method: 'POST',
39
40
  url: '/ffmpeg/video/compose',
41
+ headers: { 'Content-Type': 'application/json' },
40
42
  },
41
43
  },
42
44
  },
@@ -49,6 +51,7 @@ exports.composeDescription = [
49
51
  request: {
50
52
  method: 'POST',
51
53
  url: '/ffmpeg/merge',
54
+ headers: { 'Content-Type': 'application/json' },
52
55
  },
53
56
  },
54
57
  },
@@ -28,6 +28,7 @@ exports.convertDescription = [
28
28
  request: {
29
29
  method: 'POST',
30
30
  url: '/ffmpeg/convert/audio/to/mp3',
31
+ headers: { 'Content-Type': 'application/json' },
31
32
  },
32
33
  },
33
34
  },
@@ -40,6 +41,7 @@ exports.convertDescription = [
40
41
  request: {
41
42
  method: 'POST',
42
43
  url: '/ffmpeg/convert/audio/to/wav',
44
+ headers: { 'Content-Type': 'application/json' },
43
45
  },
44
46
  },
45
47
  },
@@ -52,6 +54,7 @@ exports.convertDescription = [
52
54
  request: {
53
55
  method: 'POST',
54
56
  url: '/ffmpeg/convert/image/to/jpg',
57
+ headers: { 'Content-Type': 'application/json' },
55
58
  },
56
59
  },
57
60
  },
@@ -64,6 +67,7 @@ exports.convertDescription = [
64
67
  request: {
65
68
  method: 'POST',
66
69
  url: '/ffmpeg/convert/image/to/webp',
70
+ headers: { 'Content-Type': 'application/json' },
67
71
  },
68
72
  },
69
73
  },
@@ -76,6 +80,7 @@ exports.convertDescription = [
76
80
  request: {
77
81
  method: 'POST',
78
82
  url: '/ffmpeg/convert/video/to/mp4',
83
+ headers: { 'Content-Type': 'application/json' },
79
84
  },
80
85
  },
81
86
  },
@@ -88,6 +93,7 @@ exports.convertDescription = [
88
93
  request: {
89
94
  method: 'POST',
90
95
  url: '/ffmpeg/convert/video/to/webm',
96
+ headers: { 'Content-Type': 'application/json' },
91
97
  },
92
98
  },
93
99
  },
@@ -24,6 +24,7 @@ exports.imageDescription = [
24
24
  request: {
25
25
  method: 'POST',
26
26
  url: '/image',
27
+ headers: { 'Content-Type': 'application/json' },
27
28
  },
28
29
  },
29
30
  },
@@ -23,6 +23,7 @@ exports.notifyDescription = [
23
23
  request: {
24
24
  method: 'POST',
25
25
  url: '/notifications/email',
26
+ headers: { 'Content-Type': 'application/json' },
26
27
  },
27
28
  },
28
29
  },
@@ -34,6 +34,7 @@ exports.videoDescription = [
34
34
  request: {
35
35
  method: 'POST',
36
36
  url: '/ffmpeg/video/add-intro',
37
+ headers: { 'Content-Type': 'application/json' },
37
38
  },
38
39
  },
39
40
  },
@@ -46,6 +47,7 @@ exports.videoDescription = [
46
47
  request: {
47
48
  method: 'POST',
48
49
  url: '/ffmpeg/video/add-outro',
50
+ headers: { 'Content-Type': 'application/json' },
49
51
  },
50
52
  },
51
53
  },
@@ -58,6 +60,7 @@ exports.videoDescription = [
58
60
  request: {
59
61
  method: 'POST',
60
62
  url: '/ffmpeg/video/caption',
63
+ headers: { 'Content-Type': 'application/json' },
61
64
  },
62
65
  },
63
66
  },
@@ -70,6 +73,7 @@ exports.videoDescription = [
70
73
  request: {
71
74
  method: 'POST',
72
75
  url: '/ffmpeg/video/extract/audio',
76
+ headers: { 'Content-Type': 'application/json' },
73
77
  },
74
78
  },
75
79
  },
@@ -82,6 +86,7 @@ exports.videoDescription = [
82
86
  request: {
83
87
  method: 'POST',
84
88
  url: '/ffmpeg/video/extract/images',
89
+ headers: { 'Content-Type': 'application/json' },
85
90
  },
86
91
  },
87
92
  },
@@ -94,6 +99,7 @@ exports.videoDescription = [
94
99
  request: {
95
100
  method: 'POST',
96
101
  url: '/ffmpeg/video/extract/gif',
102
+ headers: { 'Content-Type': 'application/json' },
97
103
  },
98
104
  },
99
105
  },
@@ -106,6 +112,7 @@ exports.videoDescription = [
106
112
  request: {
107
113
  method: 'POST',
108
114
  url: '/ffmpeg/video/overlay',
115
+ headers: { 'Content-Type': 'application/json' },
109
116
  },
110
117
  },
111
118
  },
@@ -118,6 +125,7 @@ exports.videoDescription = [
118
125
  request: {
119
126
  method: 'POST',
120
127
  url: '/ffmpeg/video/progress-bar',
128
+ headers: { 'Content-Type': 'application/json' },
121
129
  },
122
130
  },
123
131
  },
@@ -130,6 +138,7 @@ exports.videoDescription = [
130
138
  request: {
131
139
  method: 'POST',
132
140
  url: '/ffmpeg/video/reframe',
141
+ headers: { 'Content-Type': 'application/json' },
133
142
  },
134
143
  },
135
144
  },
@@ -142,6 +151,7 @@ exports.videoDescription = [
142
151
  request: {
143
152
  method: 'POST',
144
153
  url: '/ffmpeg/video/thumbnail',
154
+ headers: { 'Content-Type': 'application/json' },
145
155
  },
146
156
  },
147
157
  },
@@ -154,6 +164,7 @@ exports.videoDescription = [
154
164
  request: {
155
165
  method: 'POST',
156
166
  url: '/ffmpeg/video/trim',
167
+ headers: { 'Content-Type': 'application/json' },
157
168
  },
158
169
  },
159
170
  },
@@ -166,6 +177,7 @@ exports.videoDescription = [
166
177
  request: {
167
178
  method: 'POST',
168
179
  url: '/ffmpeg/video/watermark',
180
+ headers: { 'Content-Type': 'application/json' },
169
181
  },
170
182
  },
171
183
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "n8n-nodes-eranol",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "n8n community node for Eranol FFmpeg media processing API",
5
5
  "license": "MIT",
6
6
  "homepage": "https://github.com/harshalone/n8n-nodes-eranol",