4 lines
136 B
Bash
4 lines
136 B
Bash
#!/bin/bash
|
|
# creates a 5 second long empty mp3 file
|
|
ffmpeg -f lavfi -i anullsrc=r=44100:cl=mono -t 5 -q:a 9 -acodec libmp3lame out.mp3
|