Graybeard
Well-Known Member
This video is a bit rough but the code was a bitch to capture off my HDMI audio converter --the voice is OpenAI's ChatGPT 4o
Then to overlay the audio over the video grr.
Took ChatGPT's 10 tries (then I lost power during a wind storm and a tree branch fell out front ).
I then rebooted loaded to Claude and it took another 4 tries to get the code close to working. Good enough for this LOL
If you are going to talk about AI AI will have something to add or to reorganize your content copy
barry@DS-12:~$ ffmpeg -f pulse -i alsa_output.pci-0000_e5_00.1.hdmi-stereo-extra2.monitor -codec:a libmp3lame -qscale:a 2 output.mp3
Then to overlay the audio over the video grr.
Took ChatGPT's 10 tries (then I lost power during a wind storm and a tree branch fell out front ).
I then rebooted loaded to Claude and it took another 4 tries to get the code close to working. Good enough for this LOL
Bash:
ffmpeg -stream_loop -1 -i input_video.mp4 -i output.mp3 -filter_complex "[0:v]loop=loop=-1:size=32767:
start=0[v]; \
[1:a]adelay=8000|8000[delayedaudio]; \
[v][delayedaudio]concat=n=1:v=1:a=1[outv][outa]" -map "[outv]" -map "[outa]" -t 240 -c:v libx264 -c:a aac output_video.mp4
If you are going to talk about AI AI will have something to add or to reorganize your content copy
Last edited: