리듬 박스 - 밴시 가져 오기 스크립트는 마이그레이션 할 플레이 횟수 및 등급 . @xiphosurus에게 감사합니다. 그러나 스크립트가 작동하려면 밴시 및 리듬 박스 데이터베이스의 위치를 알려야합니다.
스크립트 준비
리듬 박스 및 밴시 DB 파일을 찾습니다. 기본 위치는 다음과 같습니다.
/home/YOUR_USERNAME/.local/share/rhythmbox/rhythmdb.xml
/home/YOUR_USERNAME/.config/banshee-1/banshee.db
그들을 백업! 나는 다시 말할 것이다. 백업하십시오.
이제 banshee.db 파일을 rhythmbox-banshee-import 스크립트와 같은 폴더에 복사하십시오. 그런 다음 줄이 말하는 rhythmbox-banshee-import 스크립트를 수정하십시오.
RB_DB = 'rhythmdb.xml'
다음과 같이 경로 /to/your/rhythmboxdb.xml 파일을 삽입하십시오.
RB_DB = '/home/YOUR_USERNAME/.local/share/rhythmbox/rhythmdb.xml'
이제 스크립트를 실행하면 모든 재생 횟수와 재생 목록이 업데이트됩니다.
문제 해결
lxml이라는 모듈이 없습니다.
오류가 발생 ... ImportError: No module named lxml ...
하면 Python Xml Parsers 를 설치 해야합니다 .
sudo apt-get install python-lxml
권한이 거부되었습니다
"권한이 거부되었습니다"가 표시되면 다른 사용자의 디렉토리에있는 파일에 액세스 할 수있는 권한이 없거나 파일이 실행 가능하지 않기 때문입니다. 실행 가능하게하려면 다음을 실행하십시오.
chmod +x /path/to/your/rhythmbox-banshee-import-script
부록
리듬 박스-밴시-가져 오기 스크립트
#!/usr/bin/python
"""
Copyright (c) 2009 Wolfgang Steitz
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 3 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, write to the Free Software Foundation,
Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
"""
import sys
import sqlite3
from lxml import etree
RB_DB = 'rhythmdb.xml'
BA_DB = 'banshee.db'
class banshee_db():
def __init__(self, file):
self.con = sqlite3.connect(file)
def get_song_info(self, url):
try:
res = self.con.execute('select Rating, Playcount from CoreTracks where uri = ?', (url,) ).fetchone()
if res is None:
return None, None
else:
return res
except:
return None, None
banshee = banshee_db(BA_DB)
tree = etree.parse(RB_DB)
root = tree.getroot()
for song in root:
if song.get("type") == 'song':
rating = None
playcount = None
for attr in song:
if attr.tag == 'location':
location = attr.text
if attr.tag == 'rating':
rating = attr.text
if attr.tag == 'play-count':
playcount = int(attr.text)
song.remove(attr)
rating_banshee, playcount_banshee = banshee.get_song_info(location)
if rating is None:# noch kein rating in db
if not (rating_banshee == 0 or rating_banshee is None):
rating = rating_banshee
if not (playcount_banshee == 0 or playcount_banshee is None):
if playcount is None:
playcount = playcount_banshee
else:
playcount += playcount_banshee
#insert rating into rb db
if rating is not None:
element = etree.Element('rating')
element.text = str(rating)
song.append( element)
#update playcount
if playcount is not None:
element = etree.Element('play-count')
element.text = str(playcount)
song.append( element)
tree.write(RB_DB)