Burn discs using Freevo
To be able to burn your discs using Freevo you need to enable the cd_burn plugin:
plugin.activate('cd_burn')
Next, you'll need to let the plugin know which device is your burner:
CDBURN_DEV = '/dev/cdrom'
The speed at which discs are burnt:
CDBURN_SPEED = 32 CDBURN_DVD_BURN_SPEED = 4
Weather or not to use DAO mode for audio discs:
CDBURN_AUDIO_DAO = 1
You might want to provide a temp directory for the plugin. When burning music files as an audio-cd, all files will be converted to .WAV and temporarily saved into this directory:
CDBURN_TEMP_DIR='/tmp/'
Last but not least, the plugin would like to know the location of the necessary programs to burn a disc (default = /usr/bin/*):
CDBURN_MKISOFS_PATH = '/usr/bin/mkisofs' CDBURN_CDRECORD_PATH = '/usr/bin/cdrecord' CDBURN_GROWISOS_PATH = '/usr/bin/growisofs'
Now, you can simply press the "ENTER" button of your remote on audio or video items to burn a disc. Note that this plugin requires that you have mkisofs and cdrecord installed, it cannot burn discs on its own.