如何让 Rythmbox(或 Banshee)扫描特定目录中的 .is_audio_player

如何让 Rythmbox(或 Banshee)扫描特定目录中的 .is_audio_player

我想配置(或欺骗) Rhythmbox 来处理任意目录(网络共享),这样我就可以自动使用它将我的音乐发送到那里(并使用 .is_audio_player 将其转换为合适的格式),而不是使用外部工具。

具体来说,我想将音乐传输到我的 Windows Phone,但显然将音乐正常传输到 SD 卡会导致很多问题(歌曲条目重复且更多 -> 占用大量内存并使手机速度难以忍受地变慢)。不幸的是,本机程序不会即时转换,所以我希望使用 Rhythmbox 来选择和转码我想要的歌曲,然后使用本机应用程序将我选择的歌曲传输到手机。我可以通过使用一些可移动驱动器(如果我打算经常传输音乐,这会很麻烦)或外部应用程序(这很麻烦,因为我喜欢边听边选歌)来解决这个问题,但我想知道是否有更好的解决方案。)

答案1

A)如果您想使用 Rythmbox 中的任何目录(网络共享)

1)打开Rythmbox

2)单击“编辑”,然后单击“首选项”

你会看到类似这样的内容:

节奏盒偏好

3)单击浏览,选择网络共享的挂载位置。

4)确保查看我的库中的新文件已被选中(如图所示)。

B) 根据我们的聊天,我相信您已经设法使用带有 .is_audio_player 的 U 盘。编辑该文件并将其复制到设备的根目录。您需要对其进行编辑以符合下面讨论的格式。如果您的媒体播放器需要 is_audio_player 文件,则意味着它不会被 Ubuntu 自动识别,并且这是一个错误(即您的驱动器未出现在自动检测到的阅读器列表中)。为了让其他像您一样的用户不必定义这样的文件,并且您的驱动器会在 Ubuntu 的未来版本中自动识别,请通过运行以下命令报告错误:ubuntu-bug media-player-info。

是音频播放器格式

下面是您可以添加到此文件 .is_audio_player 的属性的实际示例(下面将更详细地解释每个属性)。

有关所有可用属性的完整列表,请参阅HAL 标准

audio_folders = 音乐 /,其他文件夹 / 子文件夹 folder_depth = 8 output_formats = audio / mpeg,application / ogg,audio / x-ms-wma input_formats = audio / mpeg

参数“audio_folders”

列出所有包含音乐的文件夹。其他文件将被忽略。\ \ 顺序很重要,因为音乐将传输到列表中的第一个文件夹。

如果没有此参数,则将在整个卷中搜索音乐,并将传输到根目录。参数“folder_depth”

指定可找到音乐文件的子文件夹的数量:

This parameter is relative to the folder containing music, as specified in <audio_folders>;
All audio files located in another child folder will not be seen;
The value 0 indicates that there is no depth limit subfolders. 

例子:

If the player stores all the music with the tree / <audio_folders> / <Artiste> / <Album>, use the folder_depth parameter = 2;
For a compilation of Beatles containing two discs with the tree / <audio_folders> / Beatles/Compilation/Disque1 with the folder_depth parameter = 2, audio files located in Disk1 will not be seen. 

导入新歌曲时也会用到此参数:

folder_depth = 0 places the files in the root folder specified in the first audio_folders as
<audio_folders> / <artiste> - <album> - <PDISKID> piste> - name> morceau>;
folder_depth = 1: Place the files in a subfolder. This will be placed in the first indicated in the form audio_folders
<audio_folders> / <artiste> - <album> / <PDISKID> piste> - name> morceau>;
folder_depth = 2 and more: places the files in two subfolders. These will be placed in the first audio_folders indicated in the form
<audio_folders> / <artiste> / <album> / <PDISKID> piste> - name> morceau>. 

在没有参数的情况下,默认使用folder_depth = 0。参数“output_formats”

以mime类型表示播放器支持的格式,第一种表示用于导入新歌曲时自动转换。

最常用的 Mime 类型:

audio / mpeg (mp3)
application / ogg (ogg)
audio / x-ms-wma (wma). 

如果没有此参数,则导入所用的软件将使用首选项中指定的格式。参数“input_formats”

表示可以用麦克风或收音机录制播放器的格式。

最常用的 Mime 类型:

audio / mpeg (mp3)
application / ogg (ogg)
audio / x-ms-wma (wma). 

若没有该参数,则认为播放器不能录制音频。

来源(B):http://translate.google.com/translate?hl=en&sl=fr&u=http://doc.ubuntu-fr.org/is_audio_player&prev=/search%3Fq%3D.is_audio_player%26client%3Dubuntu%26hs%3D8v7%26channel%3Dfs

相关内容