{"id":28799735,"url":"https://github.com/junotb/ffmpeg-nest-media-converter","last_synced_at":"2026-04-18T01:01:33.355Z","repository":{"id":294572678,"uuid":"987402564","full_name":"junotb/ffmpeg-nest-media-converter","owner":"junotb","description":"A NestJS service that converts WebM and MP4 videos using FFmpeg","archived":false,"fork":false,"pushed_at":"2025-06-04T05:02:07.000Z","size":235,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-18T07:01:44.938Z","etag":null,"topics":["ffmpeg","fluent-ffmpeg","mp4","nestjs","nodejs","typescript","webm"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/junotb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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-05-21T03:01:05.000Z","updated_at":"2025-06-04T05:49:17.000Z","dependencies_parsed_at":"2025-05-21T04:23:44.616Z","dependency_job_id":"0610f0aa-3dab-4ef3-a866-d8b841ee47da","html_url":"https://github.com/junotb/ffmpeg-nest-media-converter","commit_stats":null,"previous_names":["junotb/ffmpeg-nest-media-converter"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/junotb/ffmpeg-nest-media-converter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junotb%2Fffmpeg-nest-media-converter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junotb%2Fffmpeg-nest-media-converter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junotb%2Fffmpeg-nest-media-converter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junotb%2Fffmpeg-nest-media-converter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/junotb","download_url":"https://codeload.github.com/junotb/ffmpeg-nest-media-converter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/junotb%2Fffmpeg-nest-media-converter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31952206,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-18T00:39:45.007Z","status":"ssl_error","status_checked_at":"2026-04-18T00:39:20.671Z","response_time":62,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["ffmpeg","fluent-ffmpeg","mp4","nestjs","nodejs","typescript","webm"],"created_at":"2025-06-18T07:00:39.308Z","updated_at":"2026-04-18T01:01:33.350Z","avatar_url":"https://github.com/junotb.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# NestJS Video Converter (WebM \u003c-\u003e MP4)\n\nNestJS 기반 영상 변환 API입니다.  \nFFmpeg을 활용하여 WebM ↔ MP4 포맷 간 변환을 수행합니다.\n\n## 주요 기능\n\n- WebM → MP4 변환 (`libx264`, `aac`)\n- MP4 → WebM 변환 (`libvpx`, `libvorbis`)\n- FFmpeg 내장 바이너리 사용 (`@ffmpeg-installer/ffmpeg`)\n\n## 기술 스택\n\n- [NestJS](https://nestjs.com/)\n- [FFmpeg](https://ffmpeg.org/)\n- [fluent-ffmpeg](https://github.com/fluent-ffmpeg/node-fluent-ffmpeg)\n- [@ffmpeg-installer/ffmpeg](https://github.com/eugeneware/ffmpeg-installer)\n\n## 디렉토리 구조\n\n```\nffmpeg-nest-media-converter/\n├── src/\n│ ├── app.controller.spec.ts # HTTP 엔드포인트 테스트\n│ ├── app.controller.ts # HTTP 엔드포인트 정의\n│ ├── app.module.ts # NestJS 모듈 정의\n│ ├── app.service.ts # FFmpeg 변환 로직\n│ └── main.ts # NestJS 애플리케이션 진입점\n├── NOTICE.txt # 라이선스 및 코덱 고지\n└── README.md\n```\n\n## 사용 방법\n\n### WebM → MP4\n\n```curl\ncurl -X POST http://localhost:3000/convert/webm-to-mp4 \\\n  -F \"file=@./inputs/sample.webm\" --output sample.mp4\n```\n\n### MP4 → WebM\n\n```curl\ncurl -X POST http://localhost:3000/convert/mp4-to-webm \\\n  -F \"file=@./inputs/sample.mp4\" --output sample.webm\n```\n\n### 샘플 변환 페이지\n\n브라우저에서 직접 파일을 업로드하고 변환 결과를 다운로드할 수 있는 **샘플 페이지**가 포함되어 있습니다.\n\n```\n/public/index.html\n실행 시 접속: http://localhost:3000\n```\n\n이 페이지는 개발/테스트용이며, 실제 서비스 적용 시에는 보안 및 파일 검증 로직을 추가해야 합니다.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunotb%2Fffmpeg-nest-media-converter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjunotb%2Fffmpeg-nest-media-converter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjunotb%2Fffmpeg-nest-media-converter/lists"}