diff options
Diffstat (limited to 'doc/documentation.tex')
-rw-r--r-- | doc/documentation.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/documentation.tex b/doc/documentation.tex index eea482a..967b89d 100644 --- a/doc/documentation.tex +++ b/doc/documentation.tex @@ -61,10 +61,10 @@ For a simple audio streaming test the following commands from the FFmpeg streaming guide\footnote{\href{https://trac.ffmpeg.org/wiki/StreamingGuide\#StreamingasimpleRTPaudiostreamfromFFmpeg}{https://trac.ffmpeg.org/wiki/StreamingGuide\#StreamingasimpleRTPaudiostreamfromFFmpeg}} can be used. The following command has to be executed on the soundbox to start -listening on port \texttt{1234} for incoming audio streams: +listening on port \texttt{5316} for incoming audio streams: \begin{verbatim} - ffplay rtp://127.0.0.1:1234 + ffplay rtp://127.0.0.1:5316 \end{verbatim} As soon as the soundbox is listening the stream can be send from another @@ -72,7 +72,7 @@ computer in the same network with this command: \begin{verbatim} ffmpeg -re -f lavfi -i aevalsrc="sin(400*2*PI*t)" -ar 8000 -f mulaw \ - -f rtp rtp://<soundbox-ip>:1234 + -f rtp rtp://<soundbox-ip>:5316 \end{verbatim} It will send a simple sine wave with 400~Hz to the soundbox device. @@ -80,7 +80,7 @@ Alternatively a mp3 file can be sent like this: \begin{verbatim} ffmpeg -i '/path/to/file.mp3' -acodec libmp3lame -ar 11025 \ - -f rtp rtp://<soundbox-ip>:1234 + -f rtp rtp://<soundbox-ip>:5316 \end{verbatim} These commands allow to test the \texttt{soundbox} device setup. |