Ugh. I would like to restream #EmacsConf from Icecast video to a Youtube live stream for extra discoverability, but I'm having a hard time figuring out an ffmpeg command that I can run on my P52 without having the audio stutter. Any chance someone already has a favorite incantation?
@sacha
When you want to separate the audio stream you can use:
cat-audio() {ffmpeg -i "concat:${(j:|:)@[2,-1]}" -acodec copy $1} ## concatenate mp3 audio files usage: cat-audio output.mp3 *.mp3
source:
https://codeberg.org/oxo/note/src/branch/main/catalog/source/sh