diff --git a/pandora/archive/extract.py b/pandora/archive/extract.py index 28b19f6b..618bad85 100644 --- a/pandora/archive/extract.py +++ b/pandora/archive/extract.py @@ -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), ] diff --git a/pandora/config.indiancinema.jsonc b/pandora/config.indiancinema.jsonc index 3ba5b93b..77f5b855 100644 --- a/pandora/config.indiancinema.jsonc +++ b/pandora/config.indiancinema.jsonc @@ -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 }, diff --git a/pandora/document/views.py b/pandora/document/views.py index a95ca06e..083090ee 100644 --- a/pandora/document/views.py +++ b/pandora/document/views.py @@ -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