# 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 \;
```
