Created
February 26, 2025 08:58
-
-
Save ZiTAL/8ba73d5dccf6ca9e84b0a6e5fb0447a1 to your computer and use it in GitHub Desktop.
ffmpeg: loop a playlist forever using concat demuxer for icecast server
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
ffconcat version 1.0 | |
file 'A' | |
file 'B.txt' |
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
ffconcat version 1.0 | |
file 'B' | |
file 'A.txt' |
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/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 |
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
the files A and B are symbolic links to another audio, to change it: