blob: 35d4fde98b0c3dd0646238a3297a6066718c574d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import parser
class MpegAudioStripper(parser.Generic_parser):
'''
mpeg audio file (mp3, ...)
'''
def _should_remove(self, field):
if field.name in ("id3v1", "id3v2"):
return True
else:
return False
|