diff --git a/Dockerfile b/Dockerfile index 9debe06..84fae0e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,16 +7,18 @@ MAINTAINER David Karchmer ##################################################################### # +# A Docker image with everything needed to run Moviepy scripts +# # Image based on Ubuntu:14.04 # # with -# - Python 3.5 -# - FFMPEG (built) -# - ImageMagick and other requirements for moviepy +# - Latest Python 3.5 +# - Latest FFMPEG (built) +# - ImageMagick, Numpy, Scipy and other requirements for moviepy # -# plus a bunch of build/web essentials via wheezy -# including MySQL and Postgres clients: -# https://github.com/docker-library/docs/tree/master/buildpack-deps +# For more on Moviepy, see http://zulko.github.io/moviepy/ +# +# plus a bunch of build/web essentials # ##################################################################### diff --git a/README.md b/README.md index 8ee68e8..61dbee1 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,10 @@ -# docker-ffmpeg-moviepy A Docker image running Ubuntu:trusty with latest Python 3.5 and latest FFMPEG (built from source) Also installs moviepy and necessary packages (numpy, scipy, ImageMagick, etc.) +For more on Moviepy, see http://zulko.github.io/moviepy/ +Many thanks to all the contributors of that great project. + ### To Build ~~~~ @@ -11,9 +13,9 @@ docker build -t . ### To pull and run from hub.docker.com -Docker Hub: https://registry.hub.docker.com/u/dkarchmervue/ffmpeg-moviepy/ +Docker Hub: https://registry.hub.docker.com/u/dkarchmervue/moviepy/ -Source and example: https://github.com/ampervue/ffmpeg-moviepy +Source and example: https://github.com/ampervue/docker-ffmpeg-moviepy ~~~~ docker pull dkarchmervue/moviepy @@ -22,15 +24,15 @@ docker run -ti dkarchmervue/moviepy ## Example -As an example, the python script uses FFMPEG to build a mosaic of -four videos +As an example, the python script demonstrates a +Hello Work, creating a title slide for 10sec ~~~~ # Pull image -docker pull dkarchmervue/ffmpeg-moviepy +docker pull dkarchmervue/moviepy # Get example files and build new image -git clone https://github.com/ampervue/ffmpeg-moviepy +git clone https://github.com/ampervue/docker-ffmpeg-moviepy cd example docker build -t example . diff --git a/example/Dockerfile b/example/Dockerfile index 5352919..abc2a73 100644 --- a/example/Dockerfile +++ b/example/Dockerfile @@ -1,7 +1,8 @@ FROM dkarchmervue/moviepy -# https://github.com/ampervue/ffmpeg-moviepy +# https://github.com/ampervue/docker-ffmpeg-moviepy # https://hub.docker.com/r/dkarchmervue/moviepy/ +# Example credits to: MAINTAINER David Karchmer @@ -13,7 +14,7 @@ MAINTAINER David Karchmer # docker pull dkarchmervue/moviepy # # # Get example files and build new image -# git clone https://github.com/ampervue/ffmpeg-moviepy +# git clone https://github.com/ampervue/docker-ffmpeg-moviepy # cd example # docker build -t example . #