1 from config import ConfigInteger, ConfigYesNo, ConfigSubsection, config
3 def InitRecordingConfig():
4 config.recording = ConfigSubsection();
5 # actually this is "recordings always have priority". "Yes" does mean: don't ask. The RecordTimer will ask when value is 0.
6 config.recording.asktozap = ConfigYesNo(default=True)
7 config.recording.margin_before = ConfigInteger(default=0, limits=(0,30))
8 config.recording.margin_after = ConfigInteger(default=0, limits=(0,30))
9 config.recording.debug = ConfigYesNo(default = False)