Skip to content

Instantly share code, notes, and snippets.

@ZiTAL
Created February 26, 2025 08:58
Show Gist options
  • Save ZiTAL/8ba73d5dccf6ca9e84b0a6e5fb0447a1 to your computer and use it in GitHub Desktop.
Save ZiTAL/8ba73d5dccf6ca9e84b0a6e5fb0447a1 to your computer and use it in GitHub Desktop.
ffmpeg: loop a playlist forever using concat demuxer for icecast server
ffconcat version 1.0
file 'A'
file 'B.txt'
ffconcat version 1.0
file 'B'
file 'A.txt'
#!/bin/bash
SERVER="icecast://source:[email protected]:8000/stream"
ffmpeg \
-stream_loop -1 \
-re \
-f concat -i "A.txt" \
-ignore_unknown -err_detect ignore_err \
-c:a libmp3lame -b:a 128k -f mp3 -content_type audio/mpeg ${SERVER}.mp3 \
-c:a libvorbis -b:a 128k -f ogg -content_type application/ogg ${SERVER}.ogg
@ZiTAL
Copy link
Author

ZiTAL commented Feb 26, 2025

the files A and B are symbolic links to another audio, to change it:

rm A && ln -s "/path/audio01.mp3"
rm B && ln -s "/path/audio02.mp3"

@ZiTAL
Copy link
Author

ZiTAL commented Feb 26, 2025

How to known what file is playing:

fuser A
fuser B

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment