1

I have a series of video frames as images that have been processed using some algorithm. I now want to stream these in a format that Google Glass can read (instructions and formats).

How would I go about encoding these images into a video and serving them as an HTTP Live Streaming video URL in Python?

Cole Gleason
  • 191
  • 4
  • 16
  • With [ffmpeg](https://www.ffmpeg.org/ffmpeg-formats.html#hls-1) . [Guide](https://trac.ffmpeg.org/wiki/Create%20a%20video%20slideshow%20from%20images) – aergistal Oct 26 '15 at 08:55
  • I know how to create a video from images, but I don't know how to make a streaming video server from a series of images. – Cole Gleason Oct 28 '15 at 19:23
  • Since it's **HTTP** Live Streaming you don't need a video server, just a regular HTTP server. You output the playlists/segments to a web-accessible directory and serve them with the right MIME types. `ffmpeg` can do both VOD/Live and there's also a `ffserver` in the same project. – aergistal Oct 29 '15 at 09:15

0 Answers0