> For the complete documentation index, see [llms.txt](https://docs.ramsdenj.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.ramsdenj.com/introduction-1/introduction-2/audio_to_video.md).

# Convert Audio to Video

Using [find](https://github.com/johnramsden/docs/blob/gitbook/shell_find.html), loop over all mp3s and convert them to mp4 videos; applying an image which will form the video's backdrop.

```shell
find -name "*.mp3" -exec ffmpeg -loop 1 -i ${imagepath} -i {} -c:a aac -strict experimental -b:a 192k -shortest {}.mp4 \;
```
