0 purchases
comparemp3 0.1.1
python-compare-mp3
Compare files using Python.
Installation
pip install -U compare-mp3
Command-line usage
compare-mp3 a.mp3 b.mp3
Programmatic usage
from compare_mp3 import compare
if compare('a.mp3', 'b.mp3'):
print('Files contain the same audio')
Return values
compare_mp3.Result.SAME_FILE Literally the same file
compare_mp3.Result.SAME_BITSTREAM Files have the same bitstream (but may have different metadata)
compare_mp3.Result.SAME_WAV Files contain the same audio (as decoded by LAME)
compare_mp3.Result.DIFFERENT Completely different files
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.