UNPKG

ffmpeg-stream-manager

Version:

🎥 A powerful TypeScript library for managing multiple simultaneous RTMP streams using FFmpeg. Perfect for streaming to platforms like YouTube Live, Twitch, and others.

74 lines (73 loc) • 1.87 kB
{ "name": "ffmpeg-stream-manager", "version": "1.0.3", "description": "🎥 A powerful TypeScript library for managing multiple simultaneous RTMP streams using FFmpeg. Perfect for streaming to platforms like YouTube Live, Twitch, and others.", "main": "dist/index.js", "types": "dist/index.d.ts", "homepage": "https://github.com/seu-usuario/ffmpeg-stream-manager#readme", "repository": { "type": "git", "url": "git+https://github.com/seu-usuario/ffmpeg-stream-manager.git" }, "bugs": { "url": "https://github.com/seu-usuario/ffmpeg-stream-manager/issues" }, "scripts": { "build": "npm run clean && tsc", "dev": "tsc --watch", "test": "jest", "test:coverage": "jest --coverage", "lint": "eslint src/**/*.ts", "lint:fix": "eslint src/**/*.ts --fix", "clean": "rm -rf dist", "prepublishOnly": "npm run build", "example": "ts-node examples/simple-example.ts", "example:multiple": "ts-node examples/multiple-files-example.ts", "docs": "typedoc src/index.ts --out docs" }, "keywords": [ "ffmpeg", "rtmp", "streaming", "youtube", "twitch", "facebook-live", "typescript", "video", "audio", "live-streaming", "broadcast", "media", "nodejs", "mp4", "mp3", "h264", "aac", "stream-manager", "multiple-streams" ], "author": "", "license": "MIT", "devDependencies": { "@types/jest": "^29.0.0", "@types/node": "^20.0.0", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "jest": "^29.0.0", "ts-jest": "^29.0.0", "ts-node": "^10.9.2", "typescript": "^5.0.0" }, "dependencies": { "@types/uuid": "^9.0.0", "uuid": "^9.0.0" }, "files": [ "dist/**/*", "README.md" ], "engines": { "node": ">=16.0.0" } }