{"id":20982114,"url":"https://github.com/guusvanmeerveld/ytadl","last_synced_at":"2025-07-23T21:09:54.586Z","repository":{"id":57404591,"uuid":"453535166","full_name":"Guusvanmeerveld/ytadl","owner":"Guusvanmeerveld","description":"A simple way to automatically download new songs from music channels.","archived":false,"fork":false,"pushed_at":"2022-03-19T01:00:17.000Z","size":336,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-05T21:18:47.466Z","etag":null,"topics":["rss","ytdl"],"latest_commit_sha":null,"homepage":"https://guusvanmeerveld.github.io/ytadl","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/Guusvanmeerveld.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}},"created_at":"2022-01-29T22:37:03.000Z","updated_at":"2022-02-06T00:08:38.000Z","dependencies_parsed_at":"2022-09-12T00:02:13.003Z","dependency_job_id":null,"html_url":"https://github.com/Guusvanmeerveld/ytadl","commit_stats":null,"previous_names":[],"tags_count":2,"template":false,"template_full_name":"Guusvanmeerveld/Typescript-Template","purl":"pkg:github/Guusvanmeerveld/ytadl","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guusvanmeerveld%2Fytadl","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guusvanmeerveld%2Fytadl/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guusvanmeerveld%2Fytadl/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guusvanmeerveld%2Fytadl/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Guusvanmeerveld","download_url":"https://codeload.github.com/Guusvanmeerveld/ytadl/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Guusvanmeerveld%2Fytadl/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266748778,"owners_count":23978281,"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-07-23T02:00:09.312Z","response_time":66,"last_error":null,"robots_txt_status":null,"robots_txt_updated_at":null,"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":["rss","ytdl"],"created_at":"2024-11-19T05:44:30.755Z","updated_at":"2025-07-23T21:09:54.539Z","avatar_url":"https://github.com/Guusvanmeerveld.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# YouTube Auto DownLoader\n![Tests](https://github.com/Guusvanmeerveld/ytadl/actions/workflows/test.yml/badge.svg)\n![Publish](https://github.com/Guusvanmeerveld/ytadl/actions/workflows/deploy.yml/badge.svg)\n\n\u003e ytadl is a simple package to listen for new uploads on Youtube and stream them automatically.\n\n## Index\n- [YouTube Auto DownLoader](#youtube-auto-downloader)\n  - [Index](#index)\n  - [Overview](#overview)\n\n## Overview\nTo get started, install the package:\n\n```bash\nnpm install ytadl\n```\n\nThe essence of the package is really simple. You import the class, instantiate a new one and listen for events just like with an `EventEmitter`. A simple example looks like the following:\n\n```ts\nimport fs from \"fs\";\n\nimport Listener from \"ytadl\";\n\nconst listener = new Listener([{ name: 'Example Youtube channel'} ]);\n\nlistener.on('newItem', async (item) =\u003e {\n\tconst writeStream = fs.createWriteStream(item.title);\n\n\tconst stream = await item.stream();\n\n\tstream.pipe(writeStream);\n});\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguusvanmeerveld%2Fytadl","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fguusvanmeerveld%2Fytadl","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fguusvanmeerveld%2Fytadl/lists"}