mirror of
https://github.com/afkarxyz/SpotiFLAC.git
synced 2026-04-25 23:25:57 +03:00
[GH-ISSUE #532] [Feature Request] Possibility of downloading directly in mp3 at 320k... #471
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/SpotiFLAC#471
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @marti88oll on GitHub (Feb 22, 2026).
Original GitHub issue: https://github.com/afkarxyz/SpotiFLAC/issues/532
[Feature Request]
Description
Possibility of downloading directly in mp3 at 320kbps.
Use Case
Normally, when I want to download a song but not in lossless, I have to download it in FLAC, then convert it to MP3, then eliminate the original file, resave on MP3Tag to update the cover image, and then I have what I want. I think it would be very useful to, with the already in use ffmpeg, automatically download it in mp3 at max quality, maybe pressing a button on "settings".
@mahoganyprogrammer commented on GitHub (Feb 22, 2026):
@marti88oll jere bat that i use. all tags are same as flac ones. works fine for saving space @echo off
if not exist "converted" mkdir "converted"
if not exist "flac" mkdir "flac"
for %%i in (*.flac) do (
ffmpeg -i "%%i" -ab 320k -map_metadata 0 -id3v2_version 3 "converted%%~ni.mp3"
move "%%i" flac
)
echo Conversion complete!
pause
@afkarxyz commented on GitHub (Feb 23, 2026):
This project is dedicated to lossless audio; there are no plans to incorporate lossy download features.