├── .gitignore ├── README.md ├── bgimage.png ├── front.png ├── pan_down.php ├── pan_left.php ├── pan_right.php ├── pan_up.php ├── rotate_ccw.php ├── rotate_cw.php ├── zoom_in.php └── zoom_out.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/README.md -------------------------------------------------------------------------------- /bgimage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/bgimage.png -------------------------------------------------------------------------------- /front.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/front.png -------------------------------------------------------------------------------- /pan_down.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/pan_down.php -------------------------------------------------------------------------------- /pan_left.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/pan_left.php -------------------------------------------------------------------------------- /pan_right.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/pan_right.php -------------------------------------------------------------------------------- /pan_up.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/pan_up.php -------------------------------------------------------------------------------- /rotate_ccw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/rotate_ccw.php -------------------------------------------------------------------------------- /rotate_cw.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/rotate_cw.php -------------------------------------------------------------------------------- /zoom_in.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/zoom_in.php -------------------------------------------------------------------------------- /zoom_out.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ikorolev72/ffmpeg-animation-samples/HEAD/zoom_out.php --------------------------------------------------------------------------------