We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi
Sample usage of making mp3 from url :
$yt = new YoutubeDl(); $collection = $yt->download( Options::create() ->downloadPath('/path/to/downloads') ->extractAudio(true) ->audioFormat('mp3') ->audioQuality('0') // best ->output('%(title)s.%(ext)s') ->url('https://www.youtube.com/watch?v=oDAw7vW7H0c') );
make this error if url be soundcloud.com : [soundcloud] Unable to extract client id And to fix it, below line should be removed :
->extractAudio(true)
The text was updated successfully, but these errors were encountered:
I'd say this belongs to discussions > show and tell, instead of in issues list where you already resolved it :)
Sorry, something went wrong.
No branches or pull requests
Hi
Sample usage of making mp3 from url :
make this error if url be soundcloud.com : [soundcloud] Unable to extract client id
And to fix it, below line should be removed :
->extractAudio(true)
The text was updated successfully, but these errors were encountered: