Last active
December 7, 2022 14:20
-
-
Save philhartung/7291c1011cf2fb43fe565ead083a91a5 to your computer and use it in GitHub Desktop.
AES67 <> Icecast relay with gstreamer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
gst-launch-1.0 udpsrc address=239.69.161.58 port=5004 multicast-iface=eth0 !\ | |
application/x-rtp, clock-rate=48000, channels=2 !\ | |
rtpjitterbuffer !\ | |
rtpL24depay !\ | |
audioconvert !\ | |
lamemp3enc !\ | |
shout2send mount=/test.mp3 port=8000 username=source password=XXX ip=10.10.0.100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
###Hello,
I try to use this script.
Many thanks because aes67 scripts are something rare...
It runs well but:
when I run it, sometimes Icecast server doesn't recieve anything.
and the script output shows :
when all is ok, the output looks like that :
(note the last 2 lines concerning latency)
Would you have any idea to solve it?
Could you tell me if this script would be ok to run 24/7 for relaying 3 audio streams on the same machine?
Thanks a lot
Have a nice day
Olivier