One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Direct copy of pre-encoded file:
$ ffmpeg -i filename.mp4 -codec: copy -start_number 0 -hls_time 10 -hls_list_size 0 -f hls filename.m3u8
from PIL import Image, ImageSequence | |
# Output (max) size | |
size = 320, 240 | |
# Open source | |
im = Image.open("in.gif") | |
# Get sequence iterator | |
frames = ImageSequence.Iterator(im) |