个人工具

“Rhythmbox”的版本间的差异

来自Ubuntu中文

跳转至: 导航, 搜索
使用
中文用户可用插件
第31行: 第31行:
 
#Python终端支持
 
#Python终端支持
  
===中文用户可用插件===
+
 
 +
 
 +
===中文用户专用插件===
 
*[http://forum.ubuntu.org.cn/viewtopic.php?f=74&t=208654 peachcolor制作的鲁班歌词(RBLyrics)]  
 
*[http://forum.ubuntu.org.cn/viewtopic.php?f=74&t=208654 peachcolor制作的鲁班歌词(RBLyrics)]  
 
*[http://forum.ubuntu.org.cn/viewtopic.php?f=74&t=236488 lx1988cyk制作的google音乐插件]
 
*[http://forum.ubuntu.org.cn/viewtopic.php?f=74&t=236488 lx1988cyk制作的google音乐插件]
 +
 +
== 其他优秀插件 ==
 +
Alarm
  
 
==安装==
 
==安装==

2009年11月17日 (二) 14:31的版本

Rythmbox title.pngRhythmbox是一个GNOME组件,负责音乐管理与播放,界面友好简单。使用C和Python编写,插件亦是。

Rhythmbox 0.12.5 simple.png

使用须知

  • Rhythmbox属于建筑于网络之上的播放器,有多种相关功能:
  1. Last.fm支持
  2. 可以直接下载Jamendo和Magnatune的歌曲,可以选择使用格式和码率,另外绝少有中文的歌曲
  3. 网络电台支持
  4. 播客支持
  • 导入不分文件夹,如果你特别在意,可能因此不用Rhythmbox,不过分类可以使用储存目标划分
  • 可以使用小窗口播放,默认 Ctrl+D 切换
  • 启用默认的歌词插件,则可以用 Ctrl+L 显示

插件

Rhythmbox预装插件

  1. DAAP音乐共享
  2. 红外遥控器支持——LIRC
  3. Jamendo和Magnatune和Last.fm支持
  4. IM即时通讯软件支持
  5. 便携硬件播放器支持MTP、iPod
  6. 专辑封面获取
  7. 歌词获取
  8. 网络电台收听
  9. Python终端支持


中文用户专用插件

其他优秀插件

Alarm

安装

Ubuntu系统自带:

 apt://rhythmbox
 sudo apt-get install rhythmbox

安装鲁班歌词

 sudo apt-get install python-gconf python-gobject gnome-osd subversion

 mkdir -p ~/.gnome2/rhythmbox/plugins
 svn checkout http://sogou-lyrics.googlecode.com/svn/trunk/ ~/.gnome2/rhythmbox/plugins/RBLyrics

重启rhythmbox,在插件管理器中寻找RBLyrics(鲁班歌词).

更新命令

 svn update ~/.gnome2/rhythmbox/plugins/RBLyrics/

协同软件

Alarm Clock的闹铃支持。

Nautilus "hover mode"播放

XChat通过一个XChat插件, Rhythmbox XChat Announcer—— Perl。

Pidgin-Rhythmbox 自动升级 Pidgin 用户信息,提示播放什么音乐。

aMSN通过 "music" 插件,类似 Messenger Plus! Live

Music Applet (以前称为 Rhythmbox Applet),是一个GNOME面板小程序控制 Rhythmbox。

Shuffle,关联 iPod Shuffle的gDesklet

Rhythmlet,关联Amazon.com的gDesklet

SideCandyRhythmbox,Rhythmbox控制和 control and SideCandy display Rhythmbox XSLT allows the music library to be viewed as a web page Drivel inserts the name of the track Rhythmbox is currently playing into a LiveJournal blog entry,也是gDesklet

Rhythmbox Tune Publisher publishes the currently playing Rhythmbox track to XMPP via the User Tune protocol (used by the Jabber World Map)

FoxyTunes, Mozilla Firefox 扩展,允许 Rhythmbox 由浏览器控制。

浏览下载Jamendo和Magnatune的Creative Commons授权专辑。


外部链接

内部链接

解决中文ID3标签乱码

需要软件包mid3iconv

安装:

 sudo apt-get install python-mutagen   

然后转至MP3目录,执行以全命令进行转换:

 mid3iconv -e GBK *.mp3   

覆盖子目录要将命令改为

 mid3iconv -e GBK */*.mp3 

将音乐重新导入rhythmbox

把以上命令保存为脚本方便运行:


  1. !/bin/sh

mid3iconv -e GBK *.mp3"(没有引号)

保存为“ID3fix.sh”文件,然后赋予运行权限

 chmod +x ID3fix.sh  

可以使用sudo移动到/usr/local/bin,在任何地方呼叫

 sudo mv ID3fix.sh /usr/local/bin


以后有要整理标签的目录,打开终端运行即可。

补充:此命令仅应对GBK编码——写明GBK,其他编码可能碰到的中文编码包括GB2312、GB18030、Big5

举例Big5,修改为

 mid3iconv -e BIG5 */*.mp3