This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# Convert widescreen-clips to mp4 for android | |
# http://www.linux.org.ru/forum/mobile/5042707 | |
# How to compile FFMPEG: | |
# https://ffmpeg.org/trac/ffmpeg/wiki/UbuntuCompilationGuide | |
INPUT="$1" | |
if [ ! -f "$INPUT" ] ; then | |
echo File $INPUT not found |
NewerOlder