aryan-developer / soundclouddownloader
a Library for download music from soundcloud easily :)
Installs: 17
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/aryan-developer/soundclouddownloader
Requires
- php: >=8.1
- ext-curl: *
This package is auto-updated.
Last update: 2025-11-04 21:01:15 UTC
README
use this library for download from SoundCloud Easily
Installation
Recommended way of installing this is via Composer:
composer require aryan-developer/soundclouddownloader
Run locally:
php -S localhost:8000
Usage
<?php use Aryan\soundcloud\SoundCloud; require_once "./vendor/autoload.php"; /** * Initialize */ $soundCloud = new SoundCloud(); /** * Search Music with Query And Get Result */ $musics = $soundCloud->searchMusic("tataloo man2"); /** * Get Music detail from Music ID */ var_dump( $soundCloud->getMusic(5453455) ); /** * get Music Detail With SoundCloud Url */ var_dump( $soundCloud->getMusicWithUrl("https://soundcloud.com/bahramnouraei/daagh") ); /** * Download with Music ID */ $soundCloud->downloadMusic($musics[0]['id']);