{"id":15039432,"url":"https://github.com/larry-oj/youtube-to-mp3","last_synced_at":"2026-01-30T18:33:14.951Z","repository":{"id":41583011,"uuid":"509959375","full_name":"larry-oj/YouTube-To-MP3","owner":"larry-oj","description":"ASP.NET 6 WebAPI that turns youtube links to mp3.","archived":false,"fork":false,"pushed_at":"2023-08-01T11:47:59.000Z","size":58,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-13T15:17:04.021Z","etag":null,"topics":["asp","asp-net-core","aspnetcore","c-sharp","csharp","dot-net","dotnet","web-api","webapi"],"latest_commit_sha":null,"homepage":"https://larryoj.tk/YoutubeConverter","language":"C#","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/larry-oj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","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}},"created_at":"2022-07-03T08:00:05.000Z","updated_at":"2025-01-11T15:00:04.000Z","dependencies_parsed_at":"2025-01-20T10:41:58.223Z","dependency_job_id":"af011d4f-e892-42e9-87b5-92915407aad9","html_url":"https://github.com/larry-oj/YouTube-To-MP3","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/larry-oj/YouTube-To-MP3","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/larry-oj%2FYouTube-To-MP3","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/larry-oj%2FYouTube-To-MP3/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/larry-oj%2FYouTube-To-MP3/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/larry-oj%2FYouTube-To-MP3/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/larry-oj","download_url":"https://codeload.github.com/larry-oj/YouTube-To-MP3/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/larry-oj%2FYouTube-To-MP3/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259308157,"owners_count":22837974,"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","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":["asp","asp-net-core","aspnetcore","c-sharp","csharp","dot-net","dotnet","web-api","webapi"],"created_at":"2024-09-24T20:42:48.339Z","updated_at":"2026-01-30T18:33:14.911Z","avatar_url":"https://github.com/larry-oj.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# YouTube to MP3 converter API\n\nA simple, easy to use youtube-to-mp3 converter. Utilises YouTubeExplode library and ffmpeg. Additionally configured for nginx proxy.\n\n\n## Table of Contents\n\n- [Features](#features)\n- [Setup](#setup)\n- [Webhooking](#webhooking)\n- [API Reference](#api-reference)\n    * [Queue video for conversion](#queue-video-for-conversion)\n    * [Get item status](#get-item-status)\n    * [Get mp3](#get-mp3)\n## Features\n\n- Creates a .mp3 file from your YouTube link\n- Queueing requests to be processed in order\n- Supports parallel conversion of multiple links\n- Can act as a WebHook\n- Automatic cleanup of finished files\n\n## Setup\n- Requires FFMpeg binaries path in `appsettings.json`.\n- Requires PSQL Database connection string in `appsettings.json`\n- Requires temporary directory specified in `appsettings.json` (it will store generated MP3 files)\n- (Optional) Configure MP3 file local lifetime (minutes) in `appsettings.json` (default value - 10 minutes)\n\n## Webhooking\n\nIf you provide a URL upon initial conversion request, API will send a POST request with multipart/form-data containing your mp3 to set url upon successful conversion\n\n\n## API Reference\n\n#### Queue video for conversion\n\n```http\n  POST /Converter/videos\n```\n\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `url` | `string` | **Required**. YouTube video url. |\n| `with_callback` | `bool` | Indicates weather you want API to act as a webhook. |\n| `callback_url` | `string` | **Required if `with_callback` set to `true`.** Callback url. | \n\nReturns:\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `id` | `string` | Auto-generated ID of your request \u0026 file. |\n\n\n#### Get item status\n\n```http\n  GET /Converter/videos/${id}/status\n```\n\n| Parameter | Type     | Description                       |\n| :-------- | :------- | :-------------------------------- |\n| `id`      | `string` | **Required**. ID of item to fetch. |\n\nReturns:\n| Parameter | Type     | Description                |\n| :-------- | :------- | :------------------------- |\n| `id` | `string` | ID of your request \u0026 file. |\n| `is_failed` | `bool` | Indicates wether conversion has failed. |\n| `is_finished` | `bool` | Indicates wether conversion has been finished. |\n\n\n#### Get mp3\n\n```http\n  GET /Converter/videos/${id}\n```\n\n| Parameter | Type     | Description                       |\n| :-------- | :------- | :-------------------------------- |\n| `id`      | `string` | **Required**. ID of item to fetch. |\n\nReturns:\n**.mp3 file**\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flarry-oj%2Fyoutube-to-mp3","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flarry-oj%2Fyoutube-to-mp3","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flarry-oj%2Fyoutube-to-mp3/lists"}