Difference between revisions of "Audio"

(Created page with "Category:Linux 64px|caption|Multimedia Audio applications. =Rhythmbox= See Rhythmbox")
 
 
(3 intermediate revisions by the same user not shown)
Line 7: Line 7:
  
 
See [[Useful_programs_-_multimedia#Rhythmbox|Rhythmbox]]
 
See [[Useful_programs_-_multimedia#Rhythmbox|Rhythmbox]]
 +
 +
 +
To maintain the file structure you can download the "file organizer" plug-in. See [http://askubuntu.com/questions/112668/how-do-i-force-rhythmbox-to-automatically-organise-my-music-files-into-folders Forum thread]
 +
 +
 +
<syntaxhighlight lang="bash">
 +
add-apt-repository ppa:fossfreedom/rhythmbox-plugins
 +
apt-get update
 +
apt-get install rhythmbox-plugin-fileorganizer
 +
</syntaxhighlight>
 +
 +
 +
 +
=MusicBrainz Picard=
 +
 +
[https://picard.musicbrainz.org/ MusicBrainz Picard] is very useful to adjust the MP3 properties - very fast!
 +
 +
 +
Installation instructions: https://picard.musicbrainz.org/downloads/#linux
 +
 +
<syntaxhighlight lang="bash">
 +
add-apt-repository ppa:musicbrainz-developers/stable
 +
apt-get update
 +
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>
 +
 +
 +
3. You can relaunch Rythmbox. Your card should appear ! :-)

Latest revision as of 22:25, 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/


3. You can relaunch Rythmbox. Your card should appear ! :-)