I just recentally discoverd freevo and installed it on my computer (running
SuSE linux) and i have been having problems with my local_conf.py file, when
i run freevo in terminal i keep getting syntax errors and I CANT FIX THEM,
it'sdriving me insace, I have spent, litterally, hours and hours trying to
figure what i am doing wronf, help me, please.
any help AT ALL would be appreciated.
here is an example error:
Traceback (most recent call last):
File "/usr/lib/python2.3/site-packages/freevo/main.py", line 106, in ?
import config
File "/usr/lib/python2.3/site-packages/freevo/config.py", line 448, in ?
execfile(overridefile, globals(), locals())
File "/etc/freevo/local_conf.py", line 40
AUDIO_DEVICE = '/dev/dsp' # e.g.: /dev/dsp0, /dev/audio, /dev/
alsa/?
here is the local_conf.py file:
________________________________________________________________
le function.
#
COVER_DIR = '/home/God/freevo files/covers'
#
# Only scan MOVIE_DATA_DIR and TV_SHOW_DATA_DIR for fxd files containing
# informations about a disc. If you only have the fxd files for discs in
# one of this directories (and subdirectories), set this to 1, it will
# speed up startup, 0 may be needed if you have fxd files with disc links
# in your normal movie tree.
#
ONLY_SCAN_DATADIR = 1
# ======================================================================
# Freevo audio settings:
# ======================================================================
#
# Where the Audio (mp3, ogg) files can be found.
# Format: [ ('Title1', 'directory1', 'mplayer options'),
# ('Title2', 'directory2'), ... ]
# The 'mplayer options' field can be omitted.
#
DIR_AUDIO = [ ('My Audio', '/home/God/freevo files/Audio') ]
# ======================================================================
# Freevo image viewer settings:
# ======================================================================
# Where the image files can be found.
DIR_IMAGES = [ ('My Pics', '/home/God/freevo files/images') ]
# The viewer now supports a new type of menu entry, a slideshow file.
# It also has the slideshow alarm signal handler for automated shows.
# It uses a new configuration option:
# SUFFIX_IMAGE_SSHOW = [ 'ssr' ]
# This defines the file extensions of slideshow playlists. When DIR_IMAGES
# is parsed, it will look for entries that match the SUFFIX_IMAGE_SSHOW
# patterns. If it finds a match, then it will classify that entry as a
# slideshow playlist instead of a directory of images. For example:
# ======================================================================
# Freevo games settings:
# ======================================================================
#
# MAME is an emulator for old arcade video games. It supports almost
# 2000 different games! The actual emulator is not included in Freevo,
# you'll need to download and install it separately. The main MAME
# website is at http://www.mame.net, but the version that is used here
# is at http://x.mame.net since the regular MAME is for Windows.
#
# SNES stands for Super Nintendo Entertainment System. Freevo relies
# on other programs that are not included in Freevo to play these games.
#
# NEW GAMES SYSTEM :
# =================
# The DIR_GAMES structure is now build as follows :
# <NAME>, <FOLDER>, (<TYPE>, <COMMAND_PATH>, <COMMAND_ARGS>, <IMAGE_PATH>, \
# [<FILE_SUFFIX_FOR_GENERIC>])
# where :
# - <TYPE> : Internal game types (MAME or SNES) or
# generic one (GENERIC)
# - <COMMAND_PATH> : Emulator command
# - <COMMAND_ARGS> : Arguments for the emulator
# - <IMAGE_PATH> : Optionnal path to the picture
# - <FILE_SUFFIX_FOR_GENERIC> : If the folder use the GENERIC
# type, then you must specify here
# the file suffix used by the emulator
# DIR_GAMES = [ ('MAME', '/home/media/games/xmame/roms',
# ('MAME', '/usr/local/bin/xmame.SDL', '-fullscreen -modenumber
6',
# '/home/media/games/xmame/shots', None)),
# ('SUPER NINTENDO', '/home/media/games/snes/roms',
# ('SNES', '/usr/local/bin/zsnes', '-m -r 3 -k 100 -cs -u', '',
None )),
# ('Visual Boy Advance', '/home/media/games/vba/roms/',
# ('GENERIC', '/usr/local/vba/VisualBoyAdvance', '', '',
[ 'gba' ] )),
# ('MEGADRIVE', '/home/media/games/megadrive/roms',
# ('GENESIS', '/usr/local/bin/generator-svgalib', '', '',
'' )) ]
# are used for the Mame arcade emulator.
#
GAMES_NICE = -20 # Priority of the game process. 0 is unchanged,
# <0 is higher prio, >0 lower prio.
# prio <0 has no effect unless run as root.
MAME_CACHE = '%s/romlist-%s.pickled' % (FREEVO_CACHEDIR, os.getuid())
# ======================================================================
# freevo OSD section:
# ======================================================================
#
# XML file for the skin
#
SKIN_XML_FILE = 'noia'
#
# Start the new skin with a specific layout. Default is 0, DISPLAY toggles
# between the different layouts. If a menu hasn't that layout number, 0 will
# be taken
#
# SKIN_START_LAYOUT = 0
#
# Select a way when to switch to text view even if a image menu is there
# Possible values are
# 1. force text view when all items have the same image and there are no
# directories
# 2. Ignore the directories, always switch to text view when all images
# are the same
#
SKIN_FORCE_TEXTVIEW_STYLE = 1
#
# Force text view for the mediamenu (first menu for video, audio, images and
# games).
#
SKIN_MEDIAMENU_FORCE_TEXTVIEW = 0
# ENABLE_SHUTDOWN_SYS = 0 # Performs a whole system shutdown at SHUTDOWN!
# For standalone boxes.
# The following fours variables have different settings in freevo_config.py
# based on the display you use.
# Exec a script on the osd close.
# OSD_SDL_EXEC_AFTER_CLOSE = ""
# Exec a script after startup
# OSD_SDL_EXEC_AFTER_STARTUP = ""
# OVERSCAN_X = 0
# OVERSCAN_Y = 0
# ======================================================================
# Remote control section
# ======================================================================
#
# you need a lircrc file, like this:
#
# begin
# prog = freevo
# button = select
# config = SELECT
# end
#
# Check contrib/lirc for examples and helpers/freevo2lirc.pl for a converter
# script.
#
# LIRCRC = '/etc/freevo/lircrc'
#
# Set the Joy device to 0 to disable, 1 for js0, 2 for js1, etc...
# Supports as many buttons as your controller has,
# but make sure there is a corresponding entry in JOY_CMDS.
# You will also need to plugin.activate('joy').
# FYI: new kernels use /dev/input/jsX, but joy.py will fall back on /dev/jsX
#
# JOY_DEV = 0
# JOY_CMDS = {
# 'up' : 'UP',
# 'down' : 'DOWN',
# 'left' : 'LEFT',
# 'right' : 'RIGHT',
# 'button 1' : 'PLAY',
# 'button 2' : 'PAUSE',
# 'button 3' : 'STOP',
# 'button 4' : 'ENTER',
# }
# ======================================================================
# MPlayer section:
# ======================================================================
MPLAYER_AO_DEV = 'oss:/dev/dsp' # e.g.: oss,sdl,alsa, see mplayer
docs
DVD_LANG_PREF = 'en,se,no' # Order of preferred languages on
DVD.
DVD_SUBTITLE_PREF = 'en' # Order of preferred subtitles on
DVD.
# Priority of mplayer process. 0 is unchanged, <0 is higher prio, >0 lower
prio.
# prio <0 has no effect unless run as root.
# MPLAYER_NICE = -20
MPLAYER_ARGS_DEF = (('-ac mad, -autosync 100 -nolirc -autoq 100 -screenw
%s '
# + '-screenh %s -fs') % (CONF.width, CONF.height))
#
# Mplayer options to use the software scaler. If your CPU is fast enough, you
# might try a software scaler. You can disable it later for some larger files
# with the mplayer option '-nosws'. If you have -framedrop or -hardframedrop
# as mplayer option, the software scaler will also not be used.
# A good value for this variable is
MPLAYER_SOFTWARE_SCALER = "-subfont-text-scale 5 -fs -sws 2 -vf scale=%
s:-3,"\
# "expand=%s:%s " % ( CONF.width, CONF.width,
CONF.height )
# older versions of mplayer may need
# MPLAYER_SOFTWARE_SCALER = '-xy %s -sws 2 -vop scale:-1:-1:-1:100' %
CONF.width
#
#
# Mplayer args for the different kinds of files. Possible values are dvd, vcd,
# cd (audio cd), tv, all extentions and default if nothing matches
#
MPLAYER_ARGS = { 'dvd': '-cache 8192',
# 'vcd': '-cache 4096',
# 'cd' : '-cache 500 -cdda speed=1',
# 'tv' : '-nocache',
# 'avi': '-cache 5000 -idx',
# 'rm' : '-cache 5000 -forceidx',
# 'default': '-cache 5000'
# }
# Number of seconds before seek value times out. This is used when
# seeking to a specified number of minutes into a movie. If you make
# a mistake or change your mind, the seek value will timeout after
# this many seconds
#
MPLAYER_SEEK_TIMEOUT = 8
# Autocrop files when playing. This is usefull for files in 4:3 with black
# bars on a 16:9 tv
#
MPLAYER_AUTOCROP = 0
#
# Try to set correct 'delay' and 'mc' values for mplayer based on the delay
# from mmpython. This should correct av sync problems with mplayer for some
# files, but may also break things (I don't know, that's why it's disabled
# as default). WARNING: when seeking, the playpack is out of sync for some
# seconds! This only works with mmpython > 0.2
#
MPLAYER_SET_AUDIO_DELAY = 0
# ======================================================================
# Xine section:
# ======================================================================
# You need xine-ui version greater 0.9.21 to use the all the features
# of the xine plugin
XINE_AO_DEV = 'oss' # alsa or oss
XINE_USE_VCDNAV = 0 # use xine for VCD nav playback
# ======================================================================
# TV:
# ======================================================================
#
# Watching TV
#
# XXX You must change this to fit your local conditions!
#
TV_SETTINGS = 'ntsc television us-cable /dev/video0'
# VCR_SETTINGS = 'NORM INPUT CHANLIST DEVICE'
#
# NORM: ntsc, pal, secam
# INPUT: television, composite1
# CHANLIST: One of the following:
#
# us-bcast, us-cable, us-cable-hrc, japan-bcast, japan-cable, europe-west,
# europe-east, italy, newzealand, australia, ireland, france, china-bcast,
# southafrica, argentina, canada-cable
#
# DEVICE: Usually /dev/video0, but might be /dev/video1 instead for multiple
# boards.
#
TV_SETTINGS = '%s television %s /dev/video0' % (CONF.tv, CONF.chanlist)
# This is the size (in MB) of the timeshift buffer, ie: how long you can
# pause tv for. This is set to a low default because the default buffer
# location is under FREEVO_CACHEDIR and we don't want to blow /var or /tmp.
# TIMESHIFT_BUFFER_SIZE = 128
TIMESHIFT_ENCODE_CMD = 'mp1e -m3 -c%s -p%s -r14,100' % \
# (TV_SETTINGS.split()[3], AUDIO_INPUT_DEVICE)
TIMESHIFT_BUFFER = '%s/timeshift.mpeg' % FREEVO_CACHEDIR
TV_CHANNEL_PROG = './chchan %(channel)s %(norm)s %(freqtable)s'
TV_DATEFORMAT = '%e-%b' # Day-Month: 11-Jun
TV_TIMEFORMAT = '%H:%M' # Hour-Minute 14:05
#
# XXX Recording is still work in progress. You need to change
# XXX the entire string below to fit your local settings.
# XXX Eventually TV norm (PAL/NTSC) etc will be taken from the
# XXX other flags. VCR_xxx and TV_REC_xxx is not used yet!
# XXX You also need to have the recording daemon running, see
# XXX the website docs or the mailing lists if that fails.
# XXX Example cron script:
# XXX * * * * * /usr/local/freevo/freevo execute src/tv/record_daemon.py
# if using record_daemon from cron
# REC_SCHEDULE_FILE = '/tmp/freevo_record.lst'
# if using the persitant record_server
# RECORD_SCHEDULE = '%s/record_schedule.xml' % FREEVO_CACHEDIR
# RECORD_SERVER_IP = 'localhost'
# RECORD_SERVER_PORT = 18001
#
# XXX Please see the mencoder docs for more info about the settings
# XXX below. Some stuff must be changed (adevice), others probably
# XXX should be ("Change"), or could be in some cases ("change?")
# VCR_CMD = ('/usr/local/bin/mencoder ' + # Change. Absolute path to the
runtime
# '-tv on:driver=v4l:input=0' + # Input 0 = Comp. V. in
# ':norm=NTSC' + # Change
# ':channel=%(channel)s' + # Filled in by Freevo
# ':chanlist=us-cable' + # Change
# ':width=320:height=240' + # Change if needed
# ':outfmt=yv12' + # Prob. ok, yuy2 might be faster
# ':device=/dev/video0' + # CHANGE!
# ':adevice=/dev/dsp4' + # CHANGE!
# ':audiorate=32000' + # 44100 for better sound
# ':forceaudio:forcechan=1:' + # Forced mono for bug in my
driver
# 'buffersize=64' + # 64 Megabyte capture buffer,
change?
# ' -ovc lavc -lavcopts ' + # Mencoder lavcodec video codec
# 'vcodec=mpeg4' + # lavcodec mpeg-4
# ':vbitrate=1200:' + # Change lower/higher, bitrate
# 'keyint=30 ' + # Keyframe every 10 secs, change?
# '-oac mp3lame -lameopts ' + # Use Lame for MP3 encoding
# 'br=128:cbr:mode=3 ' + # MP3 const. bitrate, 128 kbit/s
# '-ffourcc divx ' + # Force 'divx' ident, better
compat.
# '-endpos %(seconds)s ' + # only mencoder uses this so do
it here.
# '-o %(filename)s.avi ') # Filled in by Freevo
# XXX Not used yet
# VCR_SETTINGS = '%s composite1 %s /dev/video0' % (CONF.tv, CONF.chanlist)
# TV capture size for viewing and recording. Max 768x480 for NTSC,
# 768x576 for PAL. Set lower if you have a slow computer!
#
# For the 'tvtime' TV viewing application, only the horizontal size is used.
# Set the horizontal size to 400 or 480 if you have a slow (~500MHz) computer,
# it still looks OK, and the picture will not be as jerky.
# The vertical size is always either fullscreen or 480/576 (NTSC/PAL)
# for tvtime.
# TV_VIEW_SIZE = (640, 480)
# XXX Not used yet
# TV_REC_SIZE = (320, 240) # Default for slower computers
# Input formats for viewing and recording. The format affect viewing
# and recording performance. It is specific to your hardware, so read
# the MPlayer docs and experiment with mplayer to see which one fits
# your computer best.
# TV_VIEW_OUTFMT = 'yuy2' # Better quality, slower on pure FB/X11
# XXX Not used yet
# TV_REC_OUTFMT = 'yuy2'
#
# Settings for ivtv based cards such as the WinTV PVR-250/350.
#
# XXX TODO: Add descriptions and valid settings for each option.
# bitrate in bps
# stream type
# Options are: 0 (mpeg2_ps), 1 (mpeg2_ts), 2 (mpeg1), 3 (mpeg2_pes_av),
# 5 (mpeg2_pes_v), 7 (mpeg2_pes_a), 10 (dvd)
# IVTV_OPTIONS = {
# 'input' : 4,
# 'resolution' : '720x480',
# 'aspect' : 2,
# 'audio_bitmask' : 233,
# 'bframes' : 3,
# 'bitrate_mode' : 1,
# 'bitrate' : 4000000,
# 'bitrate_peak' : 4000000,
# 'dnr_mode' : 0,
# 'dnr_spatial' : 0,
# 'dnr_temporal' : 0,
# 'dnr_type' : 0,
# 'framerate' : 0,
# 'framespergop' : 15,
# 'gop_closure' : 1,
# 'pulldown' : 0,
# 'stream_type' : 10,
# }
#
# FREQUENCY_TABLE - This is only used when Freevo changes the channel
natively.
# This is only the case if you are using V4L2 and any of the following
plugins:
# timeshift, ivtv_record, ivtv_basic_tv.
# For the standard frequancy tables see src/tv/freq.py. To add your own just
# replace tuner_id in the following example with a valid tuner id (ie: '5' or
# 'BBC1') and a frequency in KHz. You may have as many entries as you like,
# anything here will simply override a coresponding entry in your standard
# frequency table and you can also have entries here that are not present i
# there.
# FREQUENCY_TABLE = {
# 'tuner_id' : 55250,
# }
#
# TV Channels. This list contains a mapping from the displayed channel name
# to the actual channel name as used by the TV watching application.
# The display name must match the names from the XMLTV guide,
# and the TV channel name must be what the tuner expects (usually a number).
#
# The TV menu is supposed to be supported by the XMLTV application for
# up to date listings, but can be used without it to just display
# the available channels.
#
# This list also determines the order in which the channels are displayed!
# N.B.: You must delete the XMLTV cache file (e.g. /var/cache/freevo/
TV.xml.pickled)
# if you make changes here and restart!
#
Format: [('xmltv channel id', 'freevo display name', 'tv channel
name'), ...]
#
# If this variable is set to None (default), Freevo will try to auto-detect
# the channel list based on the xmltv file. This doesn't work for all
# xmltv grabber, e.g. the German list doesn't contain station lists. In this
# case Freevo will output the possible list for you to add them manually.
#
# If auto-detection doesn't work or you want to edit the list, run
# freevo tv_grab -query.
#
# Setting this variable to [] will deactivate the tv guide. If you don't have
# a tv card, you may also want to add plugin.remove('tv') to remove the whole
# tv menu.
#
# All channels listed here will be displayed on the TV menu, even if they're
# not present in the XMLTV listing.
#
#
# Timedependent channels:
#
# The TV_CHANNELS-list can look like this:
#
# TV_CHANNELS = [('21', 'SVT1', 'E5'),
# ('22', 'SVT2', 'E3'),
# ('26', 'TV3', 'E10'),
# ('27', 'TV4', 'E6'),
# ('10', 'Kanal 5', 'E7'),
# ('60', 'Fox Kids', 'E8', ('1234567','0600','1659')),
# ('16', 'TV6', 'E8', ('1234567','1700','2359'),
# ('1234567','0000','0300')),
# ('14', 'MTV Europe', 'E11') ]
#
# As you can see the list takes optional tuples:
# ( 'DAYS', 'START','END')
#
# 1234567 in days means all days.
# 12345 would mean monday to friday.
#
# It will display "Fox Kids" from 06:00 to 16:59 and "TV6" from 17:00 to
03:00.
# 03:00 to 06:00 it won't be displayed at all.
#
# Program to grab xmltv listings. To get a grabber, you need to download
# xmltv. A possible value for users in the USA is tv_grab_na
# Use the tv_grab helper to grab the listings and cache them. Start
# 'freevo tv_grab --help' for more informations.
XMLTV_GRABBER = ''
# If you want to run tv_sort on your listings add the path to tv_sort here.
# tv_sort will make sure all your programs have proper stop times, otherwise
# programs might get cut off at midnight.
XMLTV_SORT = ''
# Number of days the grabber should get
XMLTV_DAYS = 6
# ======================================================================
# Builtin WWW server settings
# ======================================================================
# XXX THIS IS WORK IN PROGRESS!
#
# To activate the build in web server, please activate the www plugin
# in your local_conf.py:
#
# plugin.activate('www')
#
# Web server port number. 80 is the standard port, but is often
# taken already by apache, and cannot be used unless the server
# runs as root. Use port 8080 as the default, change to 80 if
# needed.
#
WWW_PORT = 8080
#
# Username / Password combinations to login to the web interface.
# These should be overridden in local_conf.py
#
WWW_USERS = { "user1" : "Davis / once4goat",
# "optional" : "changeme2" }
-------------------------------------------------------
This SF.net email is sponsored by: The Robotic Monkeys at ThinkGeek
For a limited time only, get FREE Ground shipping on all orders of $35
or more. Hurry up and shop folks, this offer expires April 30th!
http://www.thinkgeek.com/freeshipping/?cpg=12297
_______________________________________________
Freevo-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/freevo-users