如何从 Banshee 迁移到 Rhythmbox?

如何从 Banshee 迁移到 Rhythmbox?

根据已决定,Ubuntu精确的12.04 将具有节奏盒作为默认音乐播放器。我知道,这并不意味着我不能使用 Banshee,尽管如此,我还是想切换到它。

我很久以前就是 Rhythmbox 的粉丝,但在我转用 Banshee 之后,纳蒂我决定尝试一下,并完全迁移到它。但是,我对它不太满意,它对我来说延迟很大,还有一些其他问题。

我想将所有 Banshee 数据导出至 Rhythmbox。 包括了:

  • 曲库
  • 播放列表
  • 最好有播放次数和评分
  • 广播电台
  • 封面图片

我应该怎么做才能将所有这些数据移动到 Rhythmbox,让它作为默认音乐播放器运行,并顺利地完全切换到它?

答案1

我的看法适用于 Banshee 2.3.3 / Rhythmbox 2.95:

  1. 曲库:只需将您的音乐文件夹指定给 Rhythmbox,它就会被导入
  2. 播放列表
    • 动态播放列表:据我所知,你必须重新创建它们。这并不好玩,而且由于每个玩家的功能集不同,还会增加复杂性。
    • 静态播放列表:只需在 Banshee 中将其导出为 .m3u,然后在 Rhythmbox 中重新导入即可
  3. 播放次数和评分
    • 播放次数: 我不知道
    • 评级:为每位明星创建一个动态播放列表(即创建“rating1、rating2、rating3、rating4、rating5”动态播放列表,然后将其导出为 .m3u,然后将其导入 Rhythmbox。我刚刚测试过,两个播放器都使用相对于 ~ 的文件名,所以你会没事的。
    • 解决这两个问题的一个办法是实施#538549 - 使用 ID3v2 Popularimeter 进行评级(可能是播放计数)
  4. 广播电台: 我不知道
  5. 封面图片:虽然不是“迁移”选项,但 Rhythmbox 2.9x/3 确实更好地处理封面艺术。尝试启用中的Cover ArtCover Art Search插件Edit / Plugins。就我的情况而言(封面​​图片在文件夹中存储为 .jpg,或存储为 ID3),它们可以很好地被识别

希望有帮助!祝你好运 :)

答案2

rhythmbox-banshee-import 脚本将会迁移玩得重要评级。感谢@xiphosurus。但是,要使脚本正常工作,您需要告诉它 banshee 和 rhythmbox 数据库的位置。

准备脚本

找到您的 rhythmbox 和 banshee 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'

插入路径/到/你的/rhythmboxdb.xml 文件,例如:

RB_DB = '/home/YOUR_USERNAME/.local/share/rhythmbox/rhythmdb.xml'

现在运行脚本,所有播放计数和播放列表都将被更新。

故障排除

  • 没有名为 lxml 的模块

    如果你收到错误,... ImportError: No module named lxml ...你需要安装 Python Xml 解析器

    sudo apt-get install python-lxml
    
  • 没有权限

    如果出现“权限被拒绝”的情况,则可能是因为您没有足够的权限访问其他用户目录中的文件,或者因为该文件不可执行。要使其可执行,请运行:

    chmod +x /path/to/your/rhythmbox-banshee-import-script
    

附录

rhythmbox-banshee-import 脚本
#!/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)

答案3

要导入评分和播放次数,请使用此脚本!对我有用!

http://code.google.com/p/rhythmbox-banshee-import/

答案4

尚未实际调查 Rhythmbox 和 Banshee 细节的一些一般想法:

  1. 导入音乐数据库应该像让 Rhythmbox 再次扫描所有文件一样简单。

  2. 如果您已将 Banshee 配置为将播放计数和评级存储到音频文件的标签中,并且 Rhythmbox 支持导入 Banshee 评级(许多应用程序以或多或少“标准化”的格式存储评级,这种格式易于转换,甚至无需在音乐播放器之间转换即可使用,我知道 Banshee 支持这一点,但我不确定 Rhythmbox 是否支持),那么这些在重新扫描时也不应该成为问题。

  3. 封面图片通常与音乐文件一起存储,重新扫描时也应该可以检测到。我不确定 Banshee 是否也将封面存储在其他地方?

  4. 我希望 Banshee 可以将播放列表导出为某些标准播放列表格式(例如 .m3u/.pls 文件),然后 Rhythmbox 可以导入吗?


我刚刚发现用于保存/读取 FMPS 兼容评级的插件在 Rhythmbox 中(这些是评级,因为 Banshee 也使用它们)。文章是法语的,但插件本身似乎是英语的。也许有人可以打包它……


Banshee 有一个扩展banshee-extension-albumartwriter,它将下载的专辑封面写入包含音乐的目录(默认情况下,它只保存在缓存目录中),这也有助于将它们放入 Rhythmbox。


Banshee 可以将播放列表导出到.m3u.pls& .xspf,Rhythmbox 可以导入此类播放列表(但如果您有很多播放列表,则可能需要做大量工作......)。

相关内容