|
|
|
|
|
by dddw
1935 days ago
|
|
I have one that is pretty usefull to me, which I use to convert MTS files from my Sony camera to mp4. # batch convert MTS files into mp4 files
for f in .MTS; do avconv -i "$f" -deinterlace -vcodec libx264 -pass 1 "${f%.MTS}.mp4";done |
|