(trajectory)
| 1453 | return gain |
| 1454 | |
| 1455 | def test_task_149(trajectory): |
| 1456 | audio_path = "./output/149.mp3" |
| 1457 | ref_path = "./data/Ghostrifter Official - Serenity.mp3" |
| 1458 | |
| 1459 | audio_gain = read_mp3_file(audio_path) |
| 1460 | ref_audio_gain = read_mp3_file(ref_path) |
| 1461 | |
| 1462 | assert ref_audio_gain > audio_gain |
| 1463 | from mutagen.mp3 import MP3 |
| 1464 | |
| 1465 | def get_mp3_duration(file_path): |
nothing calls this directly
no test coverage detected