Does repeated loading and saving of a compressed audio file reduce quality? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-15T06:04:08Z http://stackoverflow.com/feeds/question/184707 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/184707/does-repeated-loading-and-saving-of-a-compressed-audio-file-reduce-quality 0 Does repeated loading and saving of a compressed audio file reduce quality? Roger Ween 2008-10-08T20:22:25Z 2008-10-08T21:01:05Z <p>Like it is the case with jpeg images for example? What's about mp3 or ogg vorbis audio files?</p> http://stackoverflow.com/questions/184707/does-repeated-loading-and-saving-of-a-compressed-audio-file-reduce-quality/184771#184771 8 Answer by ADEpt for Does repeated loading and saving of a compressed audio file reduce quality? ADEpt 2008-10-08T20:36:35Z 2008-10-08T20:36:35Z <p>It all depends on the definition of "loading" and "saving".</p> <p>If the program in question actually decodes mp3/ogg upon loading and encodes in back when saving (this could be detected by noticeable time it takes to save a file), then yes - you could experience degradation in quality. Especially if the encoding uses different settings (lower bitrate, etc).</p> <p>On the other hand, a loseless mp3 splitter, for example, could take mp3 and split it into several smaller mp3's without re-encoding them.</p> <p>So you need to consult a manual of the software in question, there is no generic answer.</p> http://stackoverflow.com/questions/184707/does-repeated-loading-and-saving-of-a-compressed-audio-file-reduce-quality/184779#184779 0 Answer by Mark Ransom for Does repeated loading and saving of a compressed audio file reduce quality? Mark Ransom 2008-10-08T20:38:52Z 2008-10-08T20:38:52Z <p>Any time you use a lossy compression, you're going to lose some quality. If you're lucky, most of what you lose the second time was already lost the first time.</p> <p>If you're curious, try it yourself and see - take the same mp3 file and load and save it repeatedly, then compare to the original. I'm sure you'll know soon enough.</p> http://stackoverflow.com/questions/184707/does-repeated-loading-and-saving-of-a-compressed-audio-file-reduce-quality/184797#184797 2 Answer by theraccoonbear for Does repeated loading and saving of a compressed audio file reduce quality? theraccoonbear 2008-10-08T20:42:21Z 2008-10-08T20:42:21Z <p>If you're using a <a href="http://en.wikipedia.org/wiki/Lossy_compression" rel="nofollow">lossy codec</a> (ogg, mp3, and jpeg, among others, are all lossy) and you're <strong>recoding</strong> the data when saving, then yes, there will, over time (or rather with repeated recoding), be a loss in quality. If you're simply "copying" files, then you're getting an exact copy of the lossy coded data, and thus it should be the same as the source file. If you're concerned about the loss of audio fidelity, consider a lossless format like <a href="http://en.wikipedia.org/wiki/FLAC" rel="nofollow">FLAC</a>.</p> http://stackoverflow.com/questions/184707/does-repeated-loading-and-saving-of-a-compressed-audio-file-reduce-quality/184899#184899 0 Answer by Roger Ween for Does repeated loading and saving of a compressed audio file reduce quality? Roger Ween 2008-10-08T21:01:05Z 2008-10-08T21:01:05Z <blockquote> <p>Any time you use a lossy compression, you're going to lose some quality. If you're lucky, most of what you lose the second time was already lost the first time.</p> </blockquote> <p>That was my assumption. The settings are the same every time. So if high frequencies are removed for example, it should make no difference at all if the algorithm tries to remove them a second time. However, there is more to audio compression than just removing frequency ranges and that's why I ask this question.</p> <p>And yes, the material is re-encoded every time. </p>