remove unused keys

This commit is contained in:
j 2024-04-19 09:24:51 +02:00
parent 86e7d12eff
commit 852a6d207b
1 changed files with 1 additions and 3 deletions

View File

@ -237,14 +237,12 @@ if __name__ == '__main__':
'oshash': clip['streams'][i],
'url': '%s/%s/%sp%s.mp4' % (base_url, clip['item'], stream_resolution, i + 1),
'item': clip['item'],
'item-in': clip['in'],
'item-out': clip['out'],
'annotation': clip.get('annotation'),
'resolution': info['resolution'],
'in': stream_in,
'out': stream_out,
'volume': clip.get('volume', 1),
'subtitles': clip_subtitles
'subtitles': clip_subtitles,
})
if 'path' in info:
videos[-1]['path'] = os.path.join(prefix, info['path'])