Research and Development
sudo apt install ffmpeg libmp3lame0
Convert all all flac files to mp3 at given /path with the following command:
find /path -name "*.flac" -exec ffmpeg -y -i {} -codec:a libmp3lame -q:a 0 -ab 256k -map_metadata 0 -id3v2_version 3 \
-write_id3v1 1 {}.mp3 \;