1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46
|
# Copyright 2014 Globo.com Player authors. All rights reserved.
# Use of this source code is governed by a MIT License
# license that can be found in the LICENSE file.
# Test server to deliver stubed M3U8s
from os.path import dirname, abspath, join
from bottle import route, run, response, redirect
import bottle
import time
playlists = abspath(join(dirname(__file__), "playlists"))
@route("/path/to/redirect_me")
def redirect_route():
redirect("/simple.m3u8")
@route("/simple.m3u8")
def simple():
response.set_header("Content-Type", "application/vnd.apple.mpegurl")
return m3u8_file("simple-playlist.m3u8")
@route("/timeout_simple.m3u8")
def timeout_simple():
time.sleep(5)
response.set_header("Content-Type", "application/vnd.apple.mpegurl")
return m3u8_file("simple-playlist.m3u8")
@route("/path/to/relative-playlist.m3u8")
def relative_playlist():
response.set_header("Content-Type", "application/vnd.apple.mpegurl")
return m3u8_file("relative-playlist.m3u8")
def m3u8_file(filename):
with open(join(playlists, filename)) as fileobj:
return fileobj.read().strip()
bottle.debug = True
run(host="localhost", port=8112)
|