mirror of
https://github.com/ivabus/lonelyradio
synced 2024-11-21 15:45:09 +03:00
No description
|
||
---|---|---|
src | ||
.gitignore | ||
.rustfmt.toml | ||
Cargo.lock | ||
Cargo.toml | ||
LICENSE | ||
README.md |
lonelyradio
TCP radio for singles
Radio that uses unencrypted TCP socket for broadcasting raw PCM (16/44.1/LE) stream
Decodes audio streams using symphonia.
Build
cargo build -r
Run
lonelyradio [-a <ADDRESS:PORT>] <MUSIC_FOLDER>
All files (recursively) will be shuffled and played back.
Clients
FFplay (from FFmpeg)
nc <SERVER> <PORT> | ffplay -f s16le -vn -ac 2 -ar 44100 -nodisp -autoexit -
MPV
nc <SERVER> <PORT> | mpv --audio-channels=stereo --audio-samplerate=44100 --demuxer-rawaudio-format=s16le --demuxer=rawaudio -
License
lonelyradio is licensed under the terms of the MIT license.