Rhythmbox-Banshee আমদানি স্ক্রিপ্ট মাইগ্রেট হবে খেলা গন্য এবং রেটিং । @ এক্সিফসরাসকে ধন্যবাদ। যাইহোক, স্ক্রিপ্টটি কাজ করার জন্য আপনাকে এটি জানাতে হবে যে বানশি এবং রিদম্বক্স ডাটাবেসগুলি।
স্ক্রিপ্ট প্রস্তুত হচ্ছে
আপনার রিদম্বক্স এবং বনশি ডিবি ফাইলগুলি সন্ধান করুন। ডিফল্ট অবস্থানগুলি হবে:
/home/YOUR_USERNAME/.local/share/rhythmbox/rhythmdb.xml
/home/YOUR_USERNAME/.config/banshee-1/banshee.db
তাদের ব্যাক আপ! আমি আবার বলব। একটি ব্যাকআপ করুন।
এখন বাঁশি.ডিবি ফাইলটিকে একই ফোল্ডারে রিদম্বক্স-বনশি-আমদানি স্ক্রিপ্টের অনুলিপি করুন। এবং তারপরে রিদম্বক্স-বনশি-আমদানি স্ক্রিপ্টটি সংশোধন করুন যেখানে লাইনটি বলে:
RB_DB = 'rhythmdb.xml'
/ আপনার / rhythmboxdb.xML ফাইল সন্নিবেশ করুন, যেমন:
RB_DB = '/home/YOUR_USERNAME/.local/share/rhythmbox/rhythmdb.xml'
এখন স্ক্রিপ্টটি চালান এবং সমস্ত প্লে গণনা এবং প্লেলিস্ট আপডেট করা হবে।
সমস্যা সমাধান
LxML নামে কোনও মডিউল নেই
আপনি যদি ত্রুটি পান তবে আপনাকে পাইথন এক্সএমএল পার্সার ইনস্টল... ImportError: No module named lxml ...
করতে হবে :
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)