def main(): """ When finished recording the soundcard output, don't forget to restore recording to microphone. Otherwise applications like Skype won't handle your microphone. """ (cap_source, cap_switch, cap_volume) = captures.get_captures() captures.set_cap_source(cap_source, 'Mic') captures.set_cap_switch(cap_switch, 'on') captures.set_cap_volume(cap_volume, 10)
def main(): """ set captures for recording the soundcard output """ (cap_source, cap_switch, cap_volume) = captures.get_captures() captures.set_cap_source(cap_source, 'Mix') captures.set_cap_switch(cap_switch, 'on') captures.set_cap_volume(cap_volume, 3)