yausername / youtubedl-android

youtube-dl for android
GNU General Public License v3.0
947 stars 172 forks source link

mp3 conversion error #189

Closed yyms3275 closed 1 year ago

yyms3275 commented 1 year ago

I get the following error when converting to mp3. Do you have any solution?

request.addOption("--extract-audio"); request.addOption("--audio-quality", "5"); request.addOption("--audio-format", "mp3"); request.addOption("-o", file.getPath());

getMessage : yt-dlp: error: Cannot download a video and extract audio into the same file! Use "/storage/emulated/0/Download/FileName.%(ext)s" instead of "/storage/emulated/0/Download/FileName" as the output template

getLocalizedMessage : Usage: yt-dlp [OPTIONS] URL [URL...]

yyms3275 commented 1 year ago

This is the workaround I found. request.addOption("-o", file.getPath() + ".%(ext)s");