n8n-nodes-audio-tools
Version:
Community audio processing nodes for n8n: concatWithGap & mergeTracks
55 lines (54 loc) • 1.51 kB
JSON
{
"name": "n8n-nodes-audio-tools",
"version": "0.1.36",
"description": "Community audio processing nodes for n8n: concatWithGap & mergeTracks",
"keywords": [
"n8n",
"audio",
"ffmpeg",
"concat",
"merge",
"community"
],
"author": "Quentin BERGER",
"license": "MIT",
"homepage": "https://github.com/Quentin-BRG/n8n-audio-tools#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Quentin-BRG/n8n-audio-tools.git"
},
"bugs": {
"url": "https://github.com/Quentin-BRG/n8n-audio-tools/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"watch": "tsc --watch",
"dev": "ts-node-dev --respawn --transpile-only src/index.ts"
},
"dependencies": {
"fluent-ffmpeg": "^2.1.2"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.27",
"@types/node": "^20.x",
"n8n-core": "^1.x",
"n8n-workflow": "^1.x",
"ts-node": "^10.x",
"ts-node-dev": "^2.x",
"typescript": "^5.x"
},
"n8n": {
"credentials": [],
"nodes": [
"dist/nodes/AudioConcatWithGap.node.js",
"dist/nodes/AudioMergeTracks.node.js",
"dist/nodes/AudioMergeSequence.node.js"
]
}
}