{"id":15688057,"url":"https://github.com/nok/soundcloud-processing","last_synced_at":"2025-05-07T20:11:14.495Z","repository":{"id":23634693,"uuid":"27004537","full_name":"nok/soundcloud-processing","owner":"nok","description":"[unmaintained] Library to use the SoundCloud API in Processing.","archived":false,"fork":false,"pushed_at":"2015-02-05T15:35:36.000Z","size":5857,"stargazers_count":8,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-03-31T13:37:43.291Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"CSS","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/nok.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2014-11-22T16:21:58.000Z","updated_at":"2021-09-17T16:36:23.000Z","dependencies_parsed_at":"2022-08-21T20:20:11.823Z","dependency_job_id":null,"html_url":"https://github.com/nok/soundcloud-processing","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nok%2Fsoundcloud-processing","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nok%2Fsoundcloud-processing/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nok%2Fsoundcloud-processing/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nok%2Fsoundcloud-processing/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nok","download_url":"https://codeload.github.com/nok/soundcloud-processing/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252949279,"owners_count":21830152,"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":[],"created_at":"2024-10-03T17:54:13.631Z","updated_at":"2025-05-07T20:11:14.462Z","avatar_url":"https://github.com/nok.png","language":"CSS","funding_links":[],"categories":["Libraries"],"sub_categories":["Contributions"],"readme":"# SoundCloud for Processing\nLibrary to use the [SoundCloud API](https://developers.soundcloud.com/docs/api/guide) in [Processing](http://processing.org/).\n\n\n## Table of Contents\n\n- [Download](#download)\n- [Installation](#installation)\n- [Dependencies](#dependencies)\n- [Tested](#tested)\n- [Usage](#usage)\n- [Questions?](#questions)\n- [License](#license)\n\n\n## Download\n\n- [SoundCloud for Processing](download/SoundCloud.zip?raw=true)\n\n\n## Installation\n\nUnzip and put the extracted *SoundCloud* folder into the libraries folder of your Processing sketches. Reference and examples are included in the *SoundCloud* folder. For more help read the [tutorial](http://www.learningprocessing.com/tutorials/libraries/) by [Daniel Shiffman](https://github.com/shiffman).\n\n\n## Dependencies\n\n- [SoundCloud Java library](https://github.com/nok/soundcloud-java-library) (It's included internally.) [![Build Status](https://travis-ci.org/nok/soundcloud-java-library.svg?branch=master)](https://travis-ci.org/nok/soundcloud-java-library)\n\n\n## Tested\n\nSystem:\n\n- **OSX** (*Mac OS X 10.7 and higher - tested with Mac OS X 10.10 Yosemite*)\n- **Windows** (*not tested yet, but x86 and x64 should work*) (*Windows 7 and 8*)\n\nProcessing version:\n\n- **2.2.1**\n\n\n## Usage\n\nI recommend to use the library with [Minim](http://code.compartmental.net/tools/minim/) ([GitHub](https://github.com/ddf/Minim)). It uses JavaSound to provide an easy-to-use audio library while still providing flexibility for more advanced users.\n\n```java\nimport de.voidplus.soundcloud.*;\nimport ddf.minim.*;\n\nSoundCloud soundcloud;\nMinim minim;\nAudioPlayer player;\n\nvoid setup(){\n  \n  // http://soundcloud.com/you/apps for APP_CLIENT_ID and APP_CLIENT_SECRET\n  soundcloud = new SoundCloud(\"APP_CLIENT_ID\", \"APP_CLIENT_SECRET\");\n  \n  // If you need any permissions:\n  // soundcloud.login(\"LOGIN_NAME\", \"LOGIN_PASS\");\n  \n  // show user details\n  User me = soundcloud.get(\"me\");\n  println(me);\n  \n  // play the first track of search\n  ArrayList\u003cTrack\u003e result = soundcloud.findTrack(\"Chromatics\");\n  if(result!=null){\n    println(\"Tracks: \"+result.size());\n\n    minim = new Minim(this);  \n    player = minim.loadFile(result.get(0).getStreamUrl());\n    player.play();\n  }\n  \n  minim = new Minim(this);\n}\n\nvoid draw(){}\n\nvoid stop(){\n  player.close();\n  minim.stop();\n}\n```\n\n\n## Questions?\n\nDon't be shy and feel free to contact me on Twitter: [@darius_morawiec](https://twitter.com/darius_morawiec)\n\n\n## License\n\n[MIT License by SoundCloud](https://raw.github.com/soundcloud/java-api-wrapper/master/LICENSE). The library is Open Source Software released under the [MIT License](MIT-LICENSE.txt).","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnok%2Fsoundcloud-processing","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnok%2Fsoundcloud-processing","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnok%2Fsoundcloud-processing/lists"}