LaravelPackages.net
Acme Inc.
Toggle sidebar
sc/scload

Scload Search and Download Form Soundcloud By keywords and link

7
0
About sc/scload

sc/scload is a Laravel package for scload search and download form soundcloud by keywords and link. It currently has 0 GitHub stars and 7 downloads on Packagist. Install it with composer require sc/scload. Discover more Laravel packages by sc or browse all Laravel packages to compare alternatives.

Last updated

scload (Search And Download) From SoundCloud

Scload Search and Download Form Soundcloud By keywords and link

##Get "Scload" You can download it from here, or require it using [composer]

{
    "require": {
      "sc/scload": "dev-master"
    }
}

install via composer

composer require sc/scload

Configration in app.php file path(app/config/app.php)

providers

  'Sc\Scload\ScloadServiceProvider',               // end of array

aliases

  'Scload'		  => 'Sc\Scload\ScloadServiceProvider',               // end of array

Get Sounds by Keywords ..

  $client_id = '33f65c0e45f566fdfb2eec92e05dffb1' ; // from soundcloud
  $limit = 10; // set limit of return result
  $word = 'any word';
  Scload::getSounds($word , $limit , $client_id)
  $client_id = '33f65c0e45f566fdfb2eec92e05dffb1' ; // from soundcloud
  $url = 'https://soundcloud.com/almaghribi1/alkahfabkar';
  Scload::getDownload($url , $client_id)
Comments