How can I convert .flac to .mp3 with ffmpeg, keeping all metadata (that is converting Vorbis comment in .flac files to ID3v2 metadata of .mp3)?
相关问题
- Improving accuracy of Google Cloud Speech API
- MP4 codec support in Chromium
- Streaming video (C# using FFmpeg AutoGen) sends mu
- How do I decode opus file to pcm file using libavc
- Convert pdf to Word document [closed]
相关文章
- Handling ffmpeg library interface change when upgr
- How to use a framework build of Python with Anacon
- c++ mp3 library [closed]
- Passing a native fd int to FFMPEG from openable UR
- FFmpeg - What does non monotonically increasing dt
- ffmpeg run from shell runs properly, but does not
- Why does System.Convert has ToDateTime that accept
- convert string to hex in python
If you want to save a little space, try the recommendation of hydrogenaud.io:
Source: http://wiki.hydrogenaud.io/index.php?title=LAME
If you want use this option in ffmpeg, you should use the
-q:a 0
alias.Source: https://trac.ffmpeg.org/wiki/Encode/MP3
If you want ID3v1 metatags too, you should add the
-write_id3v1 1
parameter.So my final command is:
This flac2mp3.sh script uses
ffmpeg
to convert a folder tree of FLAC files into another folder tree of MP3 files. Cover art is included, when present. You can set aCORES
variable to create background jobs to convert several files at a time.