Files
@ 9f0f2b39ad95
Branch filter:
Location: light9/bin/vidref
9f0f2b39ad95
5.2 KiB
text/plain
vidref web is working
Ignore-this: 686b512c0368f8cc419000e784f13935
Ignore-this: 686b512c0368f8cc419000e784f13935
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 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 | #!bin/python
"""
Camera images of the stage. View live on a web page and also save
them to disk. Retrieve images based on the song and time that was
playing when they were taken. Also, save snapshot images to a place
they can be used again as thumbnails of effects.
bin/vidref main
light9/vidref/videorecorder.py capture frames and save them
light9/vidref/replay.py backend for vidref.js playback element- figures out which frames go with the current song and time
light9/vidref/index.html web ui for watching current stage and song playback
light9/vidref/setup.html web ui for setup of camera params and frame crop
light9/web/light9-vidref-live.js LitElement for live video frames
light9/web/light9-vidref-playback.js LitElement for video playback
"""
from run_local import log
from twisted.internet import reactor, defer
import logging, optparse, json, base64, os, glob
import cyclone.web, cyclone.httpclient, cyclone.websocket
from light9 import networking, showconfig
from light9.vidref import videorecorder
from rdflib import URIRef
from light9.newtypes import Song
from light9.namespaces import L9
from rdfdb.syncedgraph import SyncedGraph
from cycloneerr import PrettyErrorHandler
parser = optparse.OptionParser()
parser.add_option("-v", "--verbose", action="store_true", help="logging.DEBUG")
(options, args) = parser.parse_args()
log.setLevel(logging.DEBUG if options.verbose else logging.INFO)
class Snapshot(cyclone.web.RequestHandler):
@defer.inlineCallbacks
def post(self):
# save next pic
# return /snapshot/path
try:
snapshotDir = 'todo'
outputFilename = yield self.settings.gui.snapshot()
assert outputFilename.startswith(snapshotDir)
out = networking.vidref.path(
"snapshot/%s" % outputFilename[len(snapshotDir):].lstrip('/'))
self.write(json.dumps({'snapshot': out}))
self.set_header("Location", out)
self.set_status(303)
except Exception:
import traceback
traceback.print_exc()
raise
pipeline = videorecorder.GstSource(
'/dev/v4l/by-id/usb-Bison_HD_Webcam_200901010001-video-index0'
# '/dev/v4l/by-id/usb-Generic_FULL_HD_1080P_Webcam_200901010001-video-index0'
)
class Live(cyclone.websocket.WebSocketHandler):
def connectionMade(self, *args, **kwargs):
pipeline.liveImages.subscribe(on_next=self.onFrame)
def connectionLost(self, reason):
0 #self.subj.dispose()
def onFrame(self, cf: videorecorder.CaptureFrame):
if cf is None: return
self.sendMessage(
json.dumps({
'jpeg': base64.b64encode(cf.asJpeg()).decode('ascii'),
'description': f't={cf.t}',
}))
class SnapshotPic(cyclone.web.StaticFileHandler):
pass
class Time(cyclone.web.RequestHandler):
def put(self):
body = json.loads(self.request.body)
t = body['t']
source = body['source']
self.settings.gui.incomingTime(t, source)
self.set_status(202)
def takeUri(songPath: bytes):
p = songPath.decode('ascii').split('/')
take = p[-1].replace('.mp4', '')
song = p[-2].split('_')
return URIRef('/'.join(
['http://light9.bigasterisk.com/show', song[-2], song[-1], take]))
class ReplayMap(PrettyErrorHandler, cyclone.web.RequestHandler):
def get(self):
song = Song(self.get_argument('song'))
clips = []
for vid in glob.glob(os.path.join(videorecorder.songDir(song),
b'*.mp4')):
pts = []
for line in open(vid.replace(b'.mp4', b'.timing'), 'rb'):
_v, vt, _eq, _song, st = line.split()
pts.append([float(st), float(vt)])
url = vid[len(os.path.dirname(os.path.dirname(showconfig.root()))
):].decode('ascii')
clips.append({
'uri': takeUri(vid),
'videoUrl': url,
'songToVideo': pts
})
clips.sort(key=lambda c: len(c['songToVideo']))
clips = clips[-3:]
clips.sort(key=lambda c: c['uri'], reverse=True)
ret = json.dumps(clips)
log.info('replayMap had %s videos; json is %s bytes', len(clips),
len(ret))
self.write(ret)
graph = SyncedGraph(networking.rdfdb.url, "vidref")
outVideos = videorecorder.FramesToVideoFiles(
pipeline.liveImages, os.path.join(showconfig.root(), b'video'))
port = networking.vidref.port
reactor.listenTCP(
port,
cyclone.web.Application(
handlers=[
(r'/()', cyclone.web.StaticFileHandler, {
'path': 'light9/vidref',
'default_filename': 'index.html'
}),
(r'/setup/()', cyclone.web.StaticFileHandler, {
'path': 'light9/vidref',
'default_filename': 'setup.html'
}),
(r'/live', Live),
(r'/replayMap', ReplayMap),
(r'/snapshot', Snapshot),
(r'/snapshot/(.*)', SnapshotPic, {
"path": 'todo',
}),
(r'/time', Time),
],
debug=True,
))
log.info("serving on %s" % port)
reactor.run()
|