mirror of
https://github.com/BlackLight/micstream.git
synced 2024-11-23 20:25:13 +01:00
Changed input device option from -d to -i
This commit is contained in:
parent
9f15010346
commit
4420740c66
1 changed files with 1 additions and 1 deletions
|
@ -14,7 +14,7 @@ def init_logging():
|
|||
|
||||
def get_args():
|
||||
parser = argparse.ArgumentParser(description='Stream an audio source over HTTP as mp3')
|
||||
parser.add_argument('-d', '--device', help='ALSA/Pulse device ID/name', required=True, dest='device')
|
||||
parser.add_argument('-i', '--device', help='ALSA/Pulse device ID/name', required=True, dest='device')
|
||||
parser.add_argument('-s', '--sound-system', help='Sound system. Supported: alsa, pulse. Default: alsa', required=False, default='alsa', dest='audio_system')
|
||||
parser.add_argument('-v', '--verbose', help='Verbose/debug mode', required=False, action='store_true', dest='debug')
|
||||
parser.add_argument('-a', '--address', help='Bind address (default: 0.0.0.0)', required=False, default='0.0.0.0', dest='address')
|
||||
|
|
Loading…
Reference in a new issue