summaryrefslogtreecommitdiffstats
path: root/alac_copy_tags.py
diff options
context:
space:
mode:
Diffstat (limited to 'alac_copy_tags.py')
-rwxr-xr-xalac_copy_tags.py51
1 files changed, 51 insertions, 0 deletions
diff --git a/alac_copy_tags.py b/alac_copy_tags.py
new file mode 100755
index 0000000..0526098
--- /dev/null
+++ b/alac_copy_tags.py
@@ -0,0 +1,51 @@
+#!/usr/bin/env python
+
+# Copyright (C) 2009 Elliott Baron
+
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 2 of the License, or
+# (at your option) any later version.
+
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU General Public License for more details.
+
+# You should have received a copy of the GNU General Public License
+# along with this program. If not, see <http://www.gnu.org/licenses/>.
+
+import sys
+from mutagen.mp4 import MP4
+from mutagen.flac import FLAC
+
+flac = FLAC(sys.argv[1])
+mp4 = MP4(sys.argv[2])
+
+# Track number
+trk_num = int(flac['tracknumber'][0])
+trk_total = int(flac['tracktotal'][0])
+mp4['trkn'] = [(trk_num, trk_total)]
+print "Track Number:", mp4['trkn']
+
+# Artist
+mp4['\xa9ART'] = flac['artist']
+print "Artist:", mp4['\xa9ART']
+
+# Title
+mp4['\xa9nam'] = flac['title']
+print "Title:", mp4['\xa9nam']
+
+# Album
+mp4['\xa9alb'] = flac['album']
+print "Album:", mp4['\xa9alb']
+
+# Year
+mp4['\xa9day'] = [flac['date'][0][:4]]
+print "Year:", mp4['\xa9day']
+
+# Genre
+mp4['\xa9gen'] = flac['genre']
+print "Genre:", mp4['\xa9gen']
+
+mp4.save()