-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaudiofile.py
449 lines (377 loc) · 14.3 KB
/
audiofile.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
from mutagen import id3, mp3, aiff, flac, mp4
from urllib.request import urlopen
from PIL import Image
import io
import os
import subprocess
import json
# Exceptions
class FileFormatError(Exception):
""" ファイルフォーマットのエラー """
pass
class URLOpenError(Exception):
""" URLを開けなかった場合に発生するエラー """
pass
class FFmpegNotFoundError(Exception):
""" FFmpeg非存在時のエラー """
pass
class JsonLoadError(Exception):
""" jsonファイル読み込み時のエラー """
pass
class CommandFailedError(Exception):
""" コマンド実行失敗時のエラー """
pass
class FileAlreadyExistsError(Exception):
""" 出力先にファイルが既に存在する時のエラー """
pass
class AudioFile():
"""
音声ファイルの曲情報を取得・編集する
Attributes
-----------
filepath : str
音声ファイルのパス
fileformat : str
音声ファイルの拡張子
title : str
曲のタイトル
album : str
アルバム名
artist : str
アーティスト名
genre : str
ジャンル
comment : str
コメント
artwork_url : str
アートワーク画像のURL
artwork : bytes or None
アートワーク画像
画像が存在しない場合はNoneが代入される
"""
def __init__(self):
self.filepath = ''
self.fileformat = ''
self.tags = None
self.title = ''
self.album = ''
self.artist = ''
#self.albumartist = ''
self.genre = ''
self.comment = ''
self.artwork_url = ''
self.artwork = None
def info(self, filepath):
"""
曲情報を取得する\n
try - exceptを用いてこのメソッドを用いること\n
ファイルが発見できない、未対応フォーマットの場合、エラー送出
Parameters
----------
filepath : str
音声ファイルのファイルパス
"""
self.filepath = filepath
self.fileformat = os.path.splitext(self.filepath)[1]
# フォーマット判別
# MP3
if self.fileformat == '.mp3':
self.mp3info()
# AIFF
elif self.fileformat == '.aiff' \
or self.fileformat == '.aif' \
or self.fileformat == '.aifc'\
or self.fileformat == '.afc':
self.aiffinfo()
# FLAC
elif self.fileformat == '.flac' \
or self.fileformat == '.fla':
self.flacinfo()
# MP4
elif self.fileformat == '.m4a' \
or self.fileformat == '.m4r' \
or self.fileformat == '.mp4' \
or self.fileformat == '.m4b':
self.mp4info()
# wav
elif self.fileformat == '.wav':
self.convert_from_wav(self.filepath)
# ファイルが未存在、未対応フォーマットの場合
else:
# すべて初期化
self.filepath = ''
self.fileformat = ''
self.tags = None
self.title = ''
self.album = ''
self.artist = ''
#self.albumartist = ''
self.genre = ''
self.comment = ''
self.artwork_url = ''
self.artwork = None
# エラー送出
raise FileFormatError('未対応のフォーマットです')
def mp3info(self):
""" MP3(ID3)の曲情報を取得 """
self.tags = mp3.MP3(self.filepath).tags
# ID3タグが存在しない場合
if self.tags == None:
# 空のID3オブジェクトを作成
self.tags = id3.ID3()
self.id3info()
def aiffinfo(self):
""" AIFFの曲情報を取得 """
self.tags = aiff.AIFF(self.filepath).tags
# ID3タグが存在しない場合
if self.tags == None:
# 空のAIFFID3オブジェクトを作成
self.tags = aiff._IFFID3()
self.id3info()
def flacinfo(self):
""" FLACの曲情報を取得 """
self.tags = flac.FLAC(self.filepath)
# 各項目取得
# キーが存在しなかった場合: 半角空白に置き換え
self.title = self.tags.get('TITLE', ' ')[0].strip()
self.album = self.tags.get('ALBUM', ' ')[0].strip()
self.artist = self.tags.get('ARTIST', ' ')[0].strip()
self.genre = self.tags.get('GENRE', ' ')[0].strip()
self.comment = self.tags.get('COMMENT', ' ')[0].strip()
artworks = self.tags.pictures
artwork = None
for artwork in artworks: # 抽出(最後に登録されている画像のみ)
pass
if artwork: # アートワーク画像が存在するか
self.artwork = artwork.data # type: bytes
else:
self.artwork = None
def mp4info(self):
""" MP4(m4a)の曲情報を取得 """
self.tags = mp4.MP4(self.filepath)
# 各項目取得
self.title = self.tags.get('\xa9nam', ' ')[0].strip()
self.album = self.tags.get('\xa9alb', ' ')[0].strip()
self.artist = self.tags.get('\xa9ART', ' ')[0].strip()
self.genre = self.tags.get('\xa9gen', ' ')[0].strip()
self.comment = self.tags.get('\xa9cmt', ' ')[0].strip()
# アートワーク取得
artworks = self.tags.get('covr') # list or None
artwork = None
if artworks:
for artwork in artworks: # 抽出(最後に登録されている画像のみ)
pass
# bytesへ変換
if artwork:
self.artwork = bytes(artwork)
else:
self.artwork = None
def id3info(self):
""" ID3タグを取得 """
self.title = str(self.tags.get('TIT2', ''))
self.album = str(self.tags.get('TALB', ''))
self.artist = str(self.tags.get('TPE1', ''))
#self.albumartist = str(self.tags.get('TPE2',''))
self.genre = str(self.tags.get('TCON', ''))
# コメント取得
try:
self.comment = str(self.tags.getall('COMM')[0])
# コメントなしの場合
except IndexError:
self.comment = ''
# アートワーク取得
artworks = self.tags.getall('APIC') # リスト取得
artwork = None
for artwork in artworks: # 抽出
pass
if artwork: # アートワーク画像が存在するか
self.artwork = artwork.data # type: bytes
else:
self.artwork = None
def edit(self):
"""
曲情報を編集する\n
try - exceptを用いてこのメソッドを用いること\n
ファイルが発見できない、未対応フォーマットの場合、エラー送出
"""
# ファイルの存在確認
if not os.path.exists(self.filepath):
raise FileNotFoundError('ファイルが見つかりませんでした')
# フォーマット判別
# MP3
if self.fileformat == '.mp3':
self.id3edit()
# AIFF
elif self.fileformat == '.aiff' \
or self.fileformat == '.aif' \
or self.fileformat == '.aifc'\
or self.fileformat == '.afc':
self.id3edit()
# FLAC
elif self.fileformat == '.flac' \
or self.fileformat == '.fla':
self.flacedit()
# MP4
elif self.fileformat == '.m4a' \
or self.fileformat == '.m4r' \
or self.fileformat == '.mp4' \
or self.fileformat == '.m4b':
self.mp4edit()
# 未対応フォーマットの場合
else:
# すべて初期化
self.filepath = ''
self.fileformat = ''
self.tags = None
self.title = ''
self.album = ''
self.artist = ''
#self.albumartist = ''
self.genre = ''
self.comment = ''
self.artwork_url = ''
self.artwork = None
# エラー送出
raise FileFormatError('未対応のフォーマットです')
def id3edit(self):
""" ID3タグを編集 """
# ID3タグ書き換え encoding: UTF-16 with BOM (1)
self.tags['TIT2'] = id3.TIT2(encoding=1, text=self.title)
self.tags['TALB'] = id3.TALB(encoding=1, text=self.album)
self.tags['TPE1'] = id3.TPE1(encoding=1, text=self.artist)
self.tags['TCON'] = id3.TCON(encoding=1, text=self.genre)
#self.tags['TPE2'] = TPE2(encoding=1, text=self.albumartist)
self.tags.delall('COMM')
self.tags['COMM'] = id3.COMM(encoding=1, lang='eng', text=self.comment)
# アートワーク書き換え
if not self.artwork_url == '': # アートワーク画像のURLがある場合
# 画像読み込み
try:
artwork_read = urlopen(self.artwork_url).read()
except:
raise URLOpenError("画像を取得できません")
# アートワーク初期化
self.tags.delall('APIC')
# 画像設定
self.tags['APIC'] = id3.APIC(
encoding=1, mime='image/jpeg', type=3, desc='Cover', data=artwork_read)
# 保存
self.tags.save(self.filepath)
# 表示用アートワーク更新
artworks = self.tags.getall('APIC') # list
artwork = None
for artwork in artworks: # 抽出
pass
if artwork: # アートワーク画像が存在するか
self.artwork = artwork.data # type: bytes
else:
self.artwork = None
def flacedit(self):
""" FLACの曲情報を編集 """
# タグ書き換え
self.tags['TITLE'] = self.title
self.tags['ALBUM'] = self.album
self.tags['ARTIST'] = self.artist
self.tags['GENRE'] = self.genre
self.tags['COMMENT'] = self.comment
# アートワーク書き換え
if not self.artwork_url == '':
# 画像読み込み
try:
artwork_read = urlopen(self.artwork_url).read()
except:
raise URLOpenError("画像を取得できません")
# 書き込み用画像オブジェクトを作成
pic = flac.Picture()
pic.data = artwork_read
pic.type = id3.PictureType.COVER_FRONT
pic.mine = 'image/jpeg'
# 画像消去
self.tags.clear_pictures()
# 画像設定
self.tags.add_picture(pic)
# 保存
self.tags.save(self.filepath)
# 表示用アートワーク更新
artworks = self.tags.pictures
artwork = None
for artwork in artworks: # 抽出(最後に登録されている画像のみ)
pass
if artwork: # アートワーク画像が存在するか
self.artwork = artwork.data # type: bytes
else:
self.artwork = None
def mp4edit(self):
""" MP4(m4a)の曲情報を編集 """
# タグ書き換え
self.tags['\xa9nam'] = self.title
self.tags['\xa9alb'] = self.album
self.tags['\xa9ART'] = self.artist
self.tags['\xa9gen'] = self.genre
self.tags['\xa9cmt'] = self.comment
# アートワーク書き換え
if not self.artwork_url == '':
# 画像読み込み
try:
artwork_read = urlopen(self.artwork_url).read()
except:
raise URLOpenError("画像を取得できません")
# 画像書き換え
# list
pic = [mp4.MP4Cover(artwork_read, mp4.MP4Cover.FORMAT_JPEG)]
self.tags['covr'] = pic
# 保存
self.tags.save(self.filepath)
# 表示用アートワーク更新
artworks = self.tags.get('covr') # list or None
artwork = None
if artworks:
for artwork in artworks: # 抽出(最後に登録されている画像のみ)
pass
# bytesへ変換
if artwork:
self.artwork = bytes(artwork)
def convert_from_wav(self, filepath):
"""wav変換"""
# ffmpeg存在確認
a = subprocess.call("ffmpeg -version", shell=True)
if a == 1:
raise FFmpegNotFoundError("ffmpegが見つかりませんでした")
try:
with open('./config.json', 'r') as cf:
config = json.load(cf)
except:
raise JsonLoadError("jsonファイルを読み込めませんでした")
# 拡張子を除くファイルパス
filepath_wo_ext = os.path.splitext(filepath)[0]
# 変換後のファイルパス
new_filepath = filepath_wo_ext + '.' + config["format"]
# 変換後のファイルパスが出力先に含まれていたら警告を表示して操作を行わない
if os.path.exists(new_filepath):
raise FileAlreadyExistsError("変換後のファイルが既に存在します")
command = 'ffmpeg -y -i \"' + filepath + '\" ' + \
config["options"][config["format"]] + ' \"' + new_filepath + '\"'
a = subprocess.call(command, shell=True)
if a == 0:
self.info(new_filepath)
else:
raise CommandFailedError("コマンド実行に失敗しました")
def output(self):
""" テスト出力用 """
print("pprint:\n{}".format(self.tags.pprint()))
print("タイトル : {}".format(self.title))
print("アルバム名 : {}".format(self.album))
print("アーティスト : {}".format(self.artist))
#print("アルバムのアーティスト: {}".format(self.albumartist))
print("ジャンル : {}".format(self.genre))
print("コメント : \n{}".format(self.comment))
# アートワーク表示
if self.artwork != None:
im = Image.open(io.BytesIO(self.artwork))
im.show()
else:
print("アートワークなし")
if __name__ == "__main__":
audiofile = AudioFile()
audiofile.info(input('対象ファイルパス: '))
audiofile.output()