Jun 01, 2021, 18:29 pm
I also need an MP3 tag editor for ubuntu
What's a good flac to mp3 converter for Ubuntu ?
|
Jun 01, 2021, 18:29 pm
I also need an MP3 tag editor for ubuntu
Jun 01, 2021, 19:43 pm
Both VLC and Audacity can do the conversion. Audacity can edit (sort of) tags too. But it can be cumbersome going through the process for each track if you have a lot
If you don't mind command line, FFMPEG is your friend. You most likely have it installed already. ("sudo apt install ffmpeg" if you get a 'command not found' error) For a single file do this in the terminal while in the directory with the file in question: Code: ffmpeg -i input.flac -ab 320k -map_metadata 0 -id3v2_version 3 output.mp3 For batch processing you can do: Code: for f in *.flac;do ffmpeg -i "${f}" -ab 320k -map_metadata 0 -id3v2_version 3 "${f%.*}".mp3;done;
Jun 03, 2021, 15:47 pm
(Jun 01, 2021, 19:43 pm)ill88eagle Wrote: Both VLC and Audacity can do the conversion. Audacity can edit (sort of) tags too. But it can be cumbersome going through the process for each track if you have a lot I didn't know about FFMPEG or that it was preinstalled. Thanks for the help
Jun 03, 2021, 16:27 pm
(Jun 03, 2021, 15:47 pm)LadyAnn2 Wrote: I didn't know about FFMPEG or that it was preinstalled. Thanks for the help FFMPEG will cover all your video and audio conversion needs, but it takes some reading and hacking. You can usually google how to convert X to Y with ffmpeg and find good answers on stack-exchange and the like. Or you can read through the manual: https://ffmpeg.org/ffmpeg.html
Jun 03, 2021, 20:26 pm
(Jun 03, 2021, 16:27 pm)ill88eagle Wrote:(Jun 03, 2021, 15:47 pm)LadyAnn2 Wrote: I didn't know about FFMPEG or that it was preinstalled. Thanks for the help Ackkkkk!! You told me to read the instructions LOL I love Ubuntu but I've never been a fan of command line procedures.
Jun 03, 2021, 20:46 pm
(Jun 03, 2021, 20:26 pm)LadyAnn2 Wrote: Ackkkkk!! You told me to read the instructions LOL Like I said, most use cases you can get an answer by googling. As for command line in general it depends what I am doing. Stuff like updating / installing / uninstalling programs I tend to prefer the terminal. Simple tasks like batch converting a bunch of files are comfy from the terminal as well. But we all have different preferences. There is a GUI for FFMPEG if you feel adventurous enough to install something by adding a ppa: https://qwinff.github.io/ That requires you do some lines in the terminal though... https://qwinff.github.io/downloads.html Wrote:Ubuntu/Mint
Jul 23, 2021, 07:46 am
You can use EasyTAG for converting into MP3
|
« Next Oldest | Next Newest »
|
Possibly Related Threads… | |||||
Thread | Author | Replies | Views | Last Post | |
Kpop - Holland (singer) - [FLAC] | nadkaro | 0 | 1,469 |
Apr 11, 2024, 06:54 am Last Post: nadkaro |
|
bad cue/flac | Anoid | 5 | 2,438 |
Mar 01, 2024, 13:28 pm Last Post: Anoid |
|
what's a good way to take all the songs on a spotify playlist and download them? | milleniumstealer.00 | 0 | 13,738 |
Nov 15, 2020, 21:54 pm Last Post: milleniumstealer.00 |
|
Audio codecs: 16/24 bits FLAC. Vinyl. etc .. | blu_people | 18 | 51,656 |
Sep 11, 2020, 10:01 am Last Post: chrisfound |
|
FLAC is a waste of space | neanderthal | 27 | 74,540 |
Aug 19, 2020, 14:43 pm Last Post: Q91 |