diff options
author | xengineering <me@xengineering.eu> | 2024-01-14 12:04:06 +0100 |
---|---|---|
committer | xengineering <me@xengineering.eu> | 2024-01-14 12:04:06 +0100 |
commit | 0b0ca08ee8a4954c59ea2421f7e7dfcf1272baff (patch) | |
tree | fce851c7440e1b0fbdde5cba272e0c8375ed061b | |
parent | 27c2557c21cae2af48b9ba298149c6fe9cceb96f (diff) | |
download | soundbox-0b0ca08ee8a4954c59ea2421f7e7dfcf1272baff.tar soundbox-0b0ca08ee8a4954c59ea2421f7e7dfcf1272baff.tar.zst soundbox-0b0ca08ee8a4954c59ea2421f7e7dfcf1272baff.zip |
doc: Use native audio codec for streaming
The music streaming documentation used to enforce re-encoding via ffmpeg
to save bandwidth. This led to pretty poor audio quality. This is not
the purpose of soundbox. It is assumed that the user wants the highest
possible audio quality as default.
-rw-r--r-- | doc/documentation.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/documentation.tex b/doc/documentation.tex index ddade37..7da906f 100644 --- a/doc/documentation.tex +++ b/doc/documentation.tex @@ -78,7 +78,7 @@ It will send a simple sine wave with 400~Hz to the soundbox device. Alternatively a mp3 file can be sent like this: \begin{verbatim} - ffmpeg -re -i '/path/to/file.mp3' -acodec libmp3lame -ar 11025 \ + ffmpeg -re -i '/path/to/file.mp3' -acodec copy -ar 11025 \ -f rtp rtp://<soundbox-ip>:5316 \end{verbatim} |