running:
bash create-vod-hls.sh beach.mkv
will produce:
beach/
|- playlist.m3u8
|- 360p.m3u8
running:
bash create-vod-hls.sh beach.mkv
will produce:
beach/
|- playlist.m3u8
|- 360p.m3u8
Table of Contents
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| # vispy: gallery 2 | |
| # Copyright (c) 2014, Vispy Development Team. | |
| # Distributed under the (new) BSD License. See LICENSE.txt for more info. | |
| # | |
| # Modified for animation with MoviePy by Zulko | |
| # See result here: http://i.imgur.com/sSCBkFd.gif | |
| # |
| """ | |
| This creates the following GIF, where the text appears to be "embedded" | |
| in the video and "disappears" beind rapunzel. | |
| http://i.imgur.com/gxEHfLX.gif | |
| """ | |
| from moviepy.editor import * | |
| import numpy as np | |
| import skimage.morphology as skm |