ubuntu:sound:convert_flac_to_mp3
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
ubuntu:sound:convert_flac_to_mp3 [2022/06/10 19:15] – peter | ubuntu:sound:convert_flac_to_mp3 [2022/09/19 11:07] (current) – peter | ||
---|---|---|---|
Line 21: | Line 21: | ||
---- | ---- | ||
- | ===== Convert files in all sub-directories to a different bitrate ===== | ||
- | |||
- | <code bash> | ||
- | find . -type f -name " | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE:** The bitrate is set to 192 kbps. | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ===== Convert files in all sub-directories to a different bitrate, but only if they have bitrates above a specific value ===== | ||
- | |||
- | ==== Using only built in Bash functions ==== | ||
- | |||
- | <code bash> | ||
- | find . -type f -name " | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE:** This uses the **file** command to determine the bitrate. | ||
- | |||
- | * Unfortunately, | ||
- | * For these files, the **$(file " | ||
- | |||
- | * The bitrate is set to 192 kbps for any file that has a bitrate above 192 kbps. | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | ==== Using mp3info ==== | ||
- | |||
- | <code bash> | ||
- | find . -type f -name " | ||
- | </ | ||
- | |||
- | <WRAP info> | ||
- | **NOTE:** This uses the **mp3info** command to determine the bitrate. | ||
- | |||
- | * This **mp3info** command needs to be installed with **sudo apt install mp3info**. | ||
- | |||
- | </ | ||
ubuntu/sound/convert_flac_to_mp3.1654888506.txt.gz · Last modified: 2022/06/10 19:15 by peter