Last active
December 23, 2021 10:02
-
-
Save ecoopnet/6b79cefb74548c15d01c7c5119720a35 to your computer and use it in GitHub Desktop.
This file contains 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 mp4 video to animation GIF. | |
# Requirement: ffmpeg | |
if [ -z "$1" ]; then | |
( | |
echo "Usage: $(basename $0) video-file.mp4 [extra-options] | |
Convert mp4 video to animation GIF. | |
i.e: if ~/Downloads/video-file.mp4 was passed, ~/Downloads/video-file.gif was generated. | |
To change/add ffmpeg options, just append any options you want after the video filename. | |
" | |
) >&2 | |
exit | |
fi | |
input="$1" | |
shift | |
opts="$@" | |
if [ -z "$( echo "$opts" | grep -- '-r ')" ];then | |
opts="$opts -r 10" | |
fi | |
if [ -z "$( echo "$opts" | grep -- 'scale= ')" ];then | |
opts="$opts -vf scale=320:-1" | |
fi | |
output=$(echo "$input" | sed 's/\.[^\.]*$//').gif | |
#echo ffmpeg -i "$input" $opts "$output" | |
ffmpeg -i "$input" $opts "$output" | |
ソースコードを https://github.com/ecoopnet/smartphone-development-tools に移植しました。
今後の更新は上記リポジトリを参照してください。
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
参考…スマートフォンアプリ開発時の動画撮影方法
iOS
Android (ADBコマンドを使う例)
adb shell screenrecord /sdcard/hoge.mp4
などとして録画開始(ファイル名は任意)adb pull /sdcard/hoge.mp4
としてAndroidからPCに転送adb shell rm /sdcard/hoge.mp4
としてAndroidから録画ファイル削除