Dear Wiki user,

You have subscribed to a wiki page or wiki category on "Freevo Wiki" for change 
notification.

The following page has been changed by 134.95.192.66:
http://freevo.sourceforge.net/cgi-bin/moin.cgi/DocumentationPage_2fPluginInfo

The comment on the change is:
moved plugin related stuff from main page to plugin page

------------------------------------------------------------------------------
@@ -146,7 +146,7 @@
 plugin.activate( 'idlebar.clock' )
 }}}
 
-If you don't like the format, you can specify can change the format by specifing the 
format as an argument, such as:
+If you don't like the format, you can change the format by specifing the format as an 
argument, such as:
 
 {{{
 plugin.activate( 'idlebar.clock', level=50, args=('%a %H:%M', ))
@@ -190,7 +190,7 @@
            ]
 }}}
 
-'''PS:''' You must have those icons (ie: newyear.png) in 
<FREEVO_PATH>/skins/images/holidays/, these listed above are there already, but if you 
add more holidays (or someone birthday), you must put there the related icon!
+'''PS:''' You must have those icons (ie: newyear.png) in 
<FREEVO_PATH>/skins/images/holidays/, these listed above are there already, but if you 
add more holidays (or someone's birthday), you must put the related icons there!
 
 === Sensors ===
 
@@ -377,30 +377,64 @@
 
 === Audio CD Backup ===
 
-audio.cdbackup does cdripping
-{{{
-plugin.activate('audio.cdbackup')
-}}}
+Freevo can now backup your audio CDs in .mp3, .ogg, or .wav format.
 
-Something like
-{{{
-AUDIO_FORMAT_STRING = '%(n)s-%(t)s'sets the name of the file
-AUDIO_BACKUP_DIR =  '/home/freevo/MP3'sets the location
-}}}
+To do so, the following variables need to be added to your local_conf.py:
 
-to configure.
+Directory that you want to backup your audio CD to.
+[[BR]]AUDIO_BACKUP_DIR =  '/music/MP3'
 
-But here is the definitive guide from source (above is not true in 1.4.1):
-{{{
-The four variables are: genre, artist,album, and song.
-    Whatever follows the last slash indicates how to create the filename.
-    Everything before the last slash indicates the directory structure you would
-    like to use -which will be appended to AUDIO_BACKUP_DIR.
-    CD_RIP_PN_PREF= '%(genre)s/%(artist)s/%(album)s/%(song)s'
+#You can use any combination of the 4 variables below to create subdirectories, and 
filename of songs.
+[[BR]]#The four variables are: genre, artist,album, and song.
+[[BR]]#Whatever follows the last slash indicates how to create the filename.
+[[BR]]#Everything before the last slash indicates the directory structure you would 
like to use -which will be appended to AUDIO_BACKUP_DIR.
+[[BR]]CD_RIP_PN_PREF= '%(genre)s/%(artist)s/%(album)s/%(song)s'
+
+This would give you something like:
+[[BR]]/music/MP3/metal/Metallica/And Justice For All/Blackened.mp3 (or Blackened.wav, 
Blackened.ogg)
+
+Here is another example which includes the artist and album in the filename:
+[[BR]]CD_RIP_PN_PREF = '%(artist)s/%(artist)s - %(album)s - %(song)s'
+[[BR]]/music/MP3/Metallica/Metallica - And Justice For All - Blackened.mp3
+
+#cdparanoia is used to rip the CD to your hard drive.  The actual command that will 
be executed is stored in CDPAR_CMD.
+[[BR]]CDPAR_CMD = 'cdparanoia'
+
+#Lame .mp3 encoding parameters:
+[[BR]]#Lame is used for .mp3 encoding.  The actual command that will be executed is 
stored in LAME_CMD
+[[BR]]LAME_CMD = 'lame'
+
+#For ripping to .mp3 you can provide your own Lame encoder parameters for bitrate, 
algorithm, and various other lame options.  Add your custom parameters in 
CD_RIP_LAME_OPTS.
+[[BR]]CD_RIP_LAME_OPTS = '--vbr-new'
+
+#Ogg Encoding:
+[[BR]]#Likewise for Ogg format, the command is as below, and you can add your own 
custom ogg encoding options.
+[[BR]]OGGENC_CMD ='oggenc'
+[[BR]]CD_RIP_OGG_OPTS = ' '
+
+To activate this plugin, add the following to local_conf.py:
+[[BR]]plugin.activate('audio.cdbackup')
+
+Finally, to actually backup an audio CD within Freeevo, when you are in the Music 
menu, highlight/choose a CD, then hit 'e' on keyboard or 'enter' on your remote 
control and you will be able to access the rip/backup menu.
+
+Here is a list of all the above mentioned parameters for simple cutting and pasting:
+{{{
+#The following are for adding and configuring the CD Audio backup plugin:
+AUDIO_BACKUP_DIR = '/music/MP3'
+ 
+CD_RIP_PN_PREF= '%(genre)s/%(artist)s/%(album)s/%(song)s'
+CDPAR_CMD = 'cdparanoia'
+ 
+LAME_CMD = 'lame'
+CD_RIP_LAME_OPTS = '--vbr-new'
+ 
+#You can leave this out if you never use ogg and it won't show up in the backup menu
+OGGENC_CMD ='oggenc'
+CD_RIP_OGG_OPTS = ' '
+ 
+#To activate the cdbackup plugin:
+plugin.activate('audio.cdbackup')
 }}}
-
-Also there is 'track' if you look around in cdbackup.py
-
 
 [[Anchor(playlist)]]
 === Playlist ===


-------------------------------------------------------
This SF.net email is sponsored by: IT Product Guide on ITManagersJournal
Use IT products in your business? Tell us what you think of them. Give us
Your Opinions, Get Free ThinkGeek Gift Certificates! Click to find out more
http://productguide.itmanagersjournal.com/guidepromo.tmpl
_______________________________________________
Freevo-wikilog mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-wikilog

Reply via email to