youtubedl-android icon indicating copy to clipboard operation
youtubedl-android copied to clipboard

mp3 conversion error

Open yyms3275 opened this issue 2 years ago • 1 comments

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

  • Use Options *

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

  • Error code *

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 avatar Sep 21 '22 02:09 yyms3275

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

yyms3275 avatar Sep 21 '22 08:09 yyms3275