{"id":31810848,"url":"https://github.com/adepanges/n8n-editly-ffmpeg","last_synced_at":"2025-10-11T06:17:20.150Z","repository":{"id":301894765,"uuid":"1009791822","full_name":"adepanges/n8n-editly-ffmpeg","owner":"adepanges","description":null,"archived":false,"fork":false,"pushed_at":"2025-07-30T09:45:00.000Z","size":18,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-07-30T11:53:20.556Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/adepanges.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-06-27T18:07:10.000Z","updated_at":"2025-07-30T09:45:05.000Z","dependencies_parsed_at":"2025-06-29T13:39:21.141Z","dependency_job_id":"506a0e4c-1883-4925-a1de-62deb46e682e","html_url":"https://github.com/adepanges/n8n-editly-ffmpeg","commit_stats":null,"previous_names":["adepanges/n8n-editly-ffmpeg"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/adepanges/n8n-editly-ffmpeg","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adepanges%2Fn8n-editly-ffmpeg","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adepanges%2Fn8n-editly-ffmpeg/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adepanges%2Fn8n-editly-ffmpeg/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adepanges%2Fn8n-editly-ffmpeg/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/adepanges","download_url":"https://codeload.github.com/adepanges/n8n-editly-ffmpeg/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/adepanges%2Fn8n-editly-ffmpeg/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":279006450,"owners_count":26084107,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-10-11T02:00:06.511Z","response_time":55,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-10-11T06:17:12.916Z","updated_at":"2025-10-11T06:17:20.143Z","avatar_url":"https://github.com/adepanges.png","language":"Shell","funding_links":[],"categories":[],"sub_categories":[],"readme":"# n8n with Worker, PostgreSQL, Redis, Browserless and Editly\n\n⚠️ **SECURITY WARNING** ⚠️\n- This setup is FOR LOCAL DEVELOPMENT ONLY\n- Containers have full host access via mounted Docker socket (/var/run/docker.sock)\n- NEVER run this configuration in production environments\n- No authentication barriers - all services exposed directly\n\nStarts n8n with:\n- PostgreSQL as database\n- Redis for queue management\n- Browserless (headless Chrome) for web automation\n- Editly for video editing\n- Separate worker container for offloading executions\n\n## Start\n\nTo start all services:\n```bash\ndocker-compose up -d\n```\n\nIf any version of image is changed, you must rebuild the images:\n```bash\ndocker-compose up --build -d\n```\n\nTo stop:\n```bash\ndocker-compose stop\n```\n\n## Configuration\n\n**IMPORTANT:** Change all default credentials in the [`.env`](.env) file before starting!\n\n### Core Services\n- PostgreSQL database credentials in `.env`:\n  - POSTGRES_DB\n  - POSTGRES_USER\n  - POSTGRES_PASSWORD\n  - POSTGRES_NON_ROOT_USER\n  - POSTGRES_NON_ROOT_PASSWORD\n\n- n8n configuration:\n  - ENCRYPTION_KEY (required for credential encryption)\n  - N8N_LICENSE_ACTIVATION_KEY (optional)\n  - Executions stored for 24 hours (EXECUTIONS_DATA_MAX_AGE)\n\n### Additional Services\n- Browserless:\n  - Runs on port 1000\n  - Access token set via TOKEN environment variable\n  - Change default token (currently 'sapidelman')\n\n- Editly:\n  - Mounts ./data directory for video file access\n  - Uses custom Dockerfile with FFmpeg\n\n- Redis:\n  - Used for queue management\n  - Data persisted in redis_storage volume\n\n## Usage Examples\n\n### Using Editly via Docker\n\n1. For JSON files with relative paths:\n```bash\ndocker exec editly sh -c \"cd /var/data/editly/examples/ \u0026\u0026 editly audio1.json5 --out /var/data/audio1.mp4\"\n```\n\n2. For JSON files with absolute paths:\n```bash\ndocker exec editly sh -c \"editly /var/data/editly/examples/audio1.json5 --out /var/data/audio1.mp4\"\n```\n\nNote: Output files will be saved to the mounted ./data directory on host\n\n3. Using Editly from n8n Execute Command node:\n```json\n{\n  \"command\": \"docker exec editly sh -c \\\"cd /var/data/editly/examples/ \u0026\u0026 editly audio1.json5 --out /var/data/audio1.mp4\\\"\",\n  \"parameters\": {}\n}\n```\n![image](https://github.com/user-attachments/assets/2d6a807e-0a88-4a43-ab9e-3b77b2cab5b5)\n\n\n## Security Considerations\n- Docker socket mounting gives containers full host control\n- All services run as root user\n- No network isolation between containers\n- Browserless token should be changed from default\n- Encryption key should be strong and kept secret\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadepanges%2Fn8n-editly-ffmpeg","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fadepanges%2Fn8n-editly-ffmpeg","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fadepanges%2Fn8n-editly-ffmpeg/lists"}