6 lines
132 B
Bash
6 lines
132 B
Bash
#!/bin/bash
|
|
#Made possible by Cody the white tiger
|
|
|
|
# $1 => Input file
|
|
# $2 => Output file
|
|
ffmpeg -i $1 -sample_fmt s16 -ar 44100 $2 |