diff options
author | Jon Bergli Heier <snakebite@jvnv.net> | 2011-08-08 00:11:01 +0200 |
---|---|---|
committer | Jon Bergli Heier <snakebite@jvnv.net> | 2011-08-08 00:11:01 +0200 |
commit | 97d7c9014855449fe04162308feac66a35e007ea (patch) | |
tree | 8133c59cb0f066d992f434109818dd771e73f544 /static/index.html |
Initial commit.
app.py
- WSGI application and handlers.
config.py
- Config helper class.
directory.py
- Directory and file helper classes.
events.py
- zeromq event publisher and subscriber.
recode.py
- Codecs and stuff
static/
- Web interface
Diffstat (limited to 'static/index.html')
-rw-r--r-- | static/index.html | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/static/index.html b/static/index.html new file mode 100644 index 0000000..ea20792 --- /dev/null +++ b/static/index.html @@ -0,0 +1,28 @@ +<!DOCTYPE html> +<html> +<head> + <title>foo</title> + <script src="/static/audio.js" type="text/javascript"></script> + <script src="/static/player.js" type="text/javascript"></script> + <link rel="stylesheet" href="/static/style.css" type="text/css" /> +</head> +<body> + <div id="transcode-div"> + <label for="trans_enabled"><input type="checkbox" id="trans_enabled" /> Transcode</label> + from + <select id="trans_from"> + <option value="ffmpeg">FFmpeg</option> + </select> + to + <select id="trans_to"> + <option value="ffmpeg">FFmpeg</option> + </select> + </div> + <textarea id="logbox" readonly="readonly" rows="10" cols="50"></textarea> + <div><input type="button" value="Close event source" onclick="source.close()" /></div> + <div id="current-dir"></div> + <ul id="song-links"></ul> + <div id="audio-src-url">none</div> + <audio id="audio" controls="controls"></audio> +</body> +</html> |