1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98
|
# Configuration file for Rygel
#
# In most cases, you would want to use the rygel-preferences UI rather than
# editing this file by hand.
# General configuration options
[general]
# Set it to 'true' if Rygel should be run as part of user's session.
enabled=false
# Set it to 'false' if you want to disable transcoding support.
enable-transcoding=true
# Set it to 'false' if you want to disable MP3 transcoding support.
enable-mp3-transcoder=false
# Set it to 'false' if you want to disable LPCM transcoding support.
enable-lpcm-transcoder=true
# Set it to 'false' if you want to disable mpeg transport stream
# (mpeg 2 video + audio) transcoding support.
enable-mp2ts-transcoder=false
# The network interface to attach rygel to. Leave it blank for dynamic
# configuration.
interface=
# The port to run HTTP server on. 0 means dynamic.
port=0
# The log level
#
# 1=critical
# 2=error
# 3=warning
# 4=message/info
# 5=debug
#
log-level=4
# Plugin specific sections
#
# Some options are generic and some are specific to each plugin.
# The generic ones are:
#
# * enabled: As the name suggests, to enable or disable the plugin.
# * title: The title of the plugin to advertise to UPnP clients. This can
# contain the following automatically substituted keywords:
# * @REALNAME@: The real name of the user as returned by
# g_get_real_name() function of glib library.
# * @USERNAME@: The user name of the user as returned by
# g_get_user_name() function of glib library.
# * @HOSTNAME@: The host name of the machine rygel is running on, as
# returned by g_get_host_name() function of glib library.
#
[Tracker]
enabled=true
share-pictures=true
share-videos=true
share-music=true
title=@HOSTNAME@
[MediaExport]
enabled=false
title=@HOSTNAME@
# List of URIs to export; if list is empty, the XDG media directries are
# exported.
uris=
# Virtual folders. Using this option you can create hierarchies based on
# differnt metadata values. Syntax for each hierarch is the following:
#
# TITLE=KEY1,VALUE1[,KEY2,VALUE2,..]
#
# When '?' is used as value, it will introduce extra hierarchy that is composed
# of a folder for each unique value of the metadata in question.
#
virtual-folders=Artists=upnp:artist,?,upnp:album,?;Albums=upnp:album,?,upnp:artist,?
[GstRenderer]
enabled=true
[ZDFMediathek]
enabled=false
# List of ids of broadcasts
rss=508
[GstLaunch]
enabled=false
launch_items=audiotestsrc;videotestsrc;videotestoverlay
audiotestsrc_title=Audiotestsrc
audiotestsrc_mime=audio/x-wav
audiotestsrc_launch=audiotestsrc ! wavenc
videotestsrc_title=Videotestsrc
videotestsrc_mime=video/mpeg
videotestsrc_launch=videotestsrc ! ffenc_mpeg2video ! mpegtsmux
videotestoverlay_title=Videotestsrc with timeoverlay 2
videotestoverlay_mime=video/mpeg
videotestoverlay_launch=videotestsrc ! timeoverlay ! ffenc_mpeg2video ! mpegtsmux
|