Stream an audio input device over HTTP as mp3
Go to file
Fabio Manganiello b20dab18f6 Added requirements.txt 2022-05-26 23:17:37 +02:00
micstream Changed input device option from -d to -i 2020-11-02 16:21:58 +01:00
.gitignore Initial commit 2020-11-01 23:52:19 +01:00
LICENSE Initial commit 2020-11-01 23:52:19 +01:00
README.md Added requirements.txt 2022-05-26 23:17:37 +02:00
requirements.txt Added requirements.txt 2022-05-26 23:17:37 +02:00
setup.py Added proper script 2020-11-02 16:17:57 +01:00

README.md

micstream

Stream an audio input device over HTTP as mp3.

Requirements

ffmpeg and lame installed on the system, e.g.:

[sudo] apt-get install ffmpeg lame

Installing the Python requirements:

[sudo] pip install -r requirements.txt

Installation

[sudo] python setup.py install

Usage

micstream --help                                              <<<
usage: micstream [-h] -d DEVICE [-s AUDIO_SYSTEM] [-v] [-a ADDRESS] [-p PORT] [-e ENDPOINT] [-r SAMPLE_RATE] [-b BITRATE]
                 [-c CHANNELS] [-f FFMPEG_BIN] [-B BUFSIZE]

Stream an audio source over HTTP as mp3

optional arguments:
  -h, --help            show this help message and exit
  -d DEVICE, --device DEVICE
                        ALSA/Pulse device ID/name
  -s AUDIO_SYSTEM, --sound-system AUDIO_SYSTEM
                        Sound system. Supported: alsa, pulse. Default: alsa
  -v, --verbose         Verbose/debug mode
  -a ADDRESS, --address ADDRESS
                        Bind address (default: 0.0.0.0)
  -p PORT, --port PORT  HTTP listen port (default: 8080)
  -e ENDPOINT, --endpoint ENDPOINT
                        HTTP endpoint for streaming (default: /stream.mp3)
  -r SAMPLE_RATE, --sample-rate SAMPLE_RATE
                        Recording sample rate (default: 44100)
  -b BITRATE, --bitrate BITRATE
                        mp3 compression bitrate, in kbps (default: 128)
  -c CHANNELS, --channels CHANNELS
                        Number of recording channels (default: 1)
  -f FFMPEG_BIN, --ffmpeg FFMPEG_BIN
                        Path to the FFmpeg binary (default: ffmpeg)
  -B BUFSIZE, --bufsize BUFSIZE
                        Size of the audio chunks to be delivered to the server (default: 8192 bytes)