├── .gitignore ├── .htaccess ├── README.md ├── converted └── .gitignore ├── logs └── .gitignore ├── screenshots ├── gui_v0.1.png └── html5_html_v0.1.png ├── upload-and-convert.php └── upload └── .gitignore /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swooningfish/ffmpeg-web-gui/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swooningfish/ffmpeg-web-gui/HEAD/.htaccess -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swooningfish/ffmpeg-web-gui/HEAD/README.md -------------------------------------------------------------------------------- /converted/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /screenshots/gui_v0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swooningfish/ffmpeg-web-gui/HEAD/screenshots/gui_v0.1.png -------------------------------------------------------------------------------- /screenshots/html5_html_v0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swooningfish/ffmpeg-web-gui/HEAD/screenshots/html5_html_v0.1.png -------------------------------------------------------------------------------- /upload-and-convert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/swooningfish/ffmpeg-web-gui/HEAD/upload-and-convert.php -------------------------------------------------------------------------------- /upload/.gitignore: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------