{"id":15146108,"url":"https://github.com/f0903/soundclouder","last_synced_at":"2025-09-07T01:03:27.848Z","repository":{"id":155200856,"uuid":"479240316","full_name":"F0903/Soundclouder","owner":"F0903","description":"A client for the SoundCloud API which does not require an auth key.","archived":false,"fork":false,"pushed_at":"2025-04-16T22:45:42.000Z","size":76,"stargazers_count":5,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-09-07T01:02:17.551Z","etag":null,"topics":["api-client","downloader","no-token","soundcloud","soundcloud-api","soundcloud-downloader"],"latest_commit_sha":null,"homepage":"","language":"C#","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/F0903.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,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2022-04-08T04:12:15.000Z","updated_at":"2025-04-16T22:45:45.000Z","dependencies_parsed_at":"2023-12-15T02:05:44.843Z","dependency_job_id":"2e9f323b-b909-443d-a7ff-b681163cb43f","html_url":"https://github.com/F0903/Soundclouder","commit_stats":{"total_commits":39,"total_committers":2,"mean_commits":19.5,"dds":"0.28205128205128205","last_synced_commit":"d5c5e37a95302a18dc113ff4d6527266dc38bff7"},"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/F0903/Soundclouder","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/F0903%2FSoundclouder","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/F0903%2FSoundclouder/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/F0903%2FSoundclouder/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/F0903%2FSoundclouder/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/F0903","download_url":"https://codeload.github.com/F0903/Soundclouder/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/F0903%2FSoundclouder/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273983110,"owners_count":25202095,"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-09-06T02:00:13.247Z","response_time":2576,"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":["api-client","downloader","no-token","soundcloud","soundcloud-api","soundcloud-downloader"],"created_at":"2024-09-26T12:00:57.661Z","updated_at":"2025-09-07T01:03:27.821Z","avatar_url":"https://github.com/F0903.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Soundclouder\n\nA minimal asynchronous client for the SoundCloud API which requires no Auth Key.\nYou only need a client_id, which can be gotten by inspecting intercepted requests from SoundCloud under the \"network\" tab in the developer window from any browser.\n\nCurrently, the library is very primitive.\n\nIt also includes a convenient test console app, that can be used standalone to download tracks and playlists from SoundCloud.\n\n### Examples\n\n#### Basic Stream URL\n```cs\nusing Soundclouder;\n\nvar client = new SearchClient(\"*your client id*\");\n\nvar searchResult = await client.SearchAsync(\"*your search query*\");\nvar media = searchResult.First(); // Filter your result.\n\nvar url = await media.GetStreamURLAsync();\n```\n\n#### Download and Conversion\n**(Requires [FFmpeg.exe](https://ffmpeg.org/download.html) in app directory or PATH!)**\n```cs\nusing Soundclouder;\n\nvar client = new SearchClient(\"*your client id*\");\n\nvar searchResult = await client.SearchAsync(\"*your search query*\");\nvar media = searchResult.First(); // Filter your result.\n\nawait media.DownloadAsync(\"./out.mp3\"); // You can use any path and extension, and ffmpeg will convert automatically.\n```\n\n### Logging\n\nThe library also includes very basic optional logging output via Soundclouder.Logging.Log.\nTo use this, simply set the Handler property to a method of your choice.\n```cs\nusing Soundclouder.Logging;\n\nLog.Handler += (severity, message) =\u003e Console.WriteLine($\"[{severity.ToString().ToUpper()}] {message}\");\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff0903%2Fsoundclouder","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ff0903%2Fsoundclouder","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ff0903%2Fsoundclouder/lists"}