Difference between revisions of "Audio"

Line 31: Line 31:
 
apt-get update
 
apt-get update
 
apt-get install picard
 
apt-get install picard
 +
</syntaxhighlight>
 +
 +
 +
 +
=Declare device / SDCard in Rythmbox=
 +
 +
Sometimes a SDcard or Android device does NOT appear in Rythmbox. :/
 +
 +
You need to create some folder + a <code>.is_audio_player</code> file to the root of your device / SDcard.
 +
 +
 +
0. Create target folders
 +
* Create '''Music''' folder on your SDcard / device
 +
* Create '''Video''' folder too
 +
 +
 +
1. Create configuration file
 +
<syntaxhighlight lang="bash">
 +
cd /media/ANDROID
 +
 +
touch .is_audio_player
 +
chmod 777 .is_audio_player
 +
vim .is_audio_player
 +
</syntaxhighlight>
 +
 +
 +
2. Put the following content (adjust the content)
 +
<syntaxhighlight lang="bash">
 +
name="Xiongmaos card"
 +
audio_folders=Music/
 +
video_folders=Video/
 +
folder_depth=2
 +
output_formats=audio/mpeg,audio/mp4,audio/flac,audio/ogg,audio/aac
 +
playlist_formats=audio/x-scpls
 +
playlist_path=Music/Playlists/
 
</syntaxhighlight>
 
</syntaxhighlight>

Revision as of 22:24, 26 June 2015


Multimedia Audio applications.


Rhythmbox

See Rhythmbox


To maintain the file structure you can download the "file organizer" plug-in. See Forum thread


add-apt-repository ppa:fossfreedom/rhythmbox-plugins
apt-get update
apt-get install rhythmbox-plugin-fileorganizer


MusicBrainz Picard

MusicBrainz Picard is very useful to adjust the MP3 properties - very fast!


Installation instructions: https://picard.musicbrainz.org/downloads/#linux

add-apt-repository ppa:musicbrainz-developers/stable
apt-get update
apt-get install picard


Declare device / SDCard in Rythmbox

Sometimes a SDcard or Android device does NOT appear in Rythmbox. :/

You need to create some folder + a .is_audio_player file to the root of your device / SDcard.


0. Create target folders

  • Create Music folder on your SDcard / device
  • Create Video folder too


1. Create configuration file

cd /media/ANDROID

touch .is_audio_player
chmod 777 .is_audio_player
vim .is_audio_player


2. Put the following content (adjust the content)

name="Xiongmaos card"
audio_folders=Music/
video_folders=Video/
folder_depth=2
output_formats=audio/mpeg,audio/mp4,audio/flac,audio/ogg,audio/aac
playlist_formats=audio/x-scpls
playlist_path=Music/Playlists/