You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
1234567891011 |
- #!/usr/bin/env bash
- # AUTHOR: shaggy
- # FILE: avitomp4.sh
- # ROLE: TODO (some explanation)
- # CREATED: 2015-01-11 05:38:46
- # MODIFIED: 2015-01-11 05:39:11
- #!/bin/bash
- for i in *.avi
- do
- ffmpeg -i "$i" "${i%avi}mp4"
- done
|