0

I recorded a mono microphone with an MP3 recorder which can only record stereo formats. Now I want to reduce the file size by removing the silent channel.

Is there a lossless way to do this?

This question was also asked here but the answer gives no lossless solution nor does it say whether its technically possible.

1 Answers1

1

TL/DR:

This depends on the format required for the end result.

  1. If the end result must be MP3, then no. There's no escaping that MP3 is a lossy file format.
  2. If the end result can be WAV, AIC, ALAC, FLAC or any other lossless format, then yes, easily. Simply open the file on any audio application, split the stereo to 2 mono channels and save the channel with the audio to a new file. My weapon of choice for this kind of quick work is Ocenaudio (a shameless plug*).

When the source file is opened in an audio application, any encoding disappears, it's simply raw audio data. The application can split the stereo channel to separate mono channels, which can then be saved to 2 new files.

To ensure these files can be post-processed, all audio applications save the files in a uncompressed, lossless format, most commonly encoded as a WAV. The file can usually be encoded also as AIFF (MacOS-only applications tend to default to this) or AU; or it can be saved as a raw PCM data with no encoding.

Files can also be often directly saved is a compressed, lossless format such as FLAC, ATRAC, ALAC (MP4) or WMA Lossless (Windows Media Audio).

If the resulting file must be in MP3 format, it must be converted. The audio can usually be exported directly as MP3 from the application, in which case the conversion happens during the export process, or the saved lossless file can be converted afterwards.

MP3 conversion algorithm passes the audio through psychoacoustic modeling, which utilizes auditory masking to determine what parts of the audio must be kept, which can be discarded to reduce the file size. The discarded information will be permanently removed, causing the loss of quality. Further reduction in the file size is achieved by compression.

The loss can be minimized by converting with highest quality, but not completely avoided. Depending on the complexity of the source material, it's possible that the loss of quality in the end result is humanly undetectable, excluding professional mastering (and some mixing) engineers. For example speech or a live recording of a rock band can survive a lot more quality loss than a recording of a string quartet. Again depending on the source material, variable or fixed bitrate produce different results.


*I'm in no way, shape or form affiliated with Ocenaudio or any of its affiliates, just a very satisfied user for over a decade and a half due to its simplicity and capability :-)

Peregrino69
  • 5,004