Compare commits

...

3 commits

Author SHA1 Message Date
j
3df8380099 icma defaults 2019-10-19 12:45:11 +01:00
j
401347e29b longer queue 2019-10-19 12:45:05 +01:00
j
b49a97209c disable debug 2019-10-19 12:44:57 +01:00
3 changed files with 4 additions and 3 deletions

View file

@ -216,6 +216,7 @@ def stream(video, target, profile, info, audio_track=0, flags={}):
'-vb', '%dk' % bitrate,
'-aspect', aspect,
# '-vf', 'yadif',
'-max_muxing_queue_size', '512',
'-vf', 'hqdn3d%s,scale=%s:%s' % (crop, width, height),
'-g', '%d' % int(fps*5),
]

View file

@ -1695,7 +1695,7 @@
"annotationsCalendarSize": 128,
"annotationsHighlight": "none",
"annotationsMapSize": 128,
"annotationsRange": "position",
"annotationsRange": "selection",
"annotationsSize": 256,
"annotationsSort": "position",
"calendarFind": "",
@ -1852,7 +1852,7 @@
"videoSize": "small",
"videoSubtitles": true,
"videoSubtitlesOffset": 0,
"videoTimeline": "slitscan",
"videoTimeline": "keyframes",
"videoView": "player",
"videoVolume": 1
},

View file

@ -210,7 +210,7 @@ def parse_query(data, user):
for key in ('keys', 'group', 'file', 'range', 'position', 'positions', 'sort'):
if key in data:
query[key] = data[key]
print(query.get('sort'), data.get('sort'))
#print(query.get('sort'), data.get('sort'))
query['qs'] = models.Document.objects.find(data, user)
query['item'] = get_item(data.get('query', {}))
return query