youtubedl-android
youtubedl-android copied to clipboard
mp3 conversion error
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...]
This is the workaround I found. request.addOption("-o", file.getPath() + ".%(ext)s");