pip update + version bump

This commit is contained in:
Zen 2021-01-24 23:43:26 +02:00
parent 5e16f6fa40
commit 1e363861c6
2 changed files with 3 additions and 1 deletions

View file

@ -142,6 +142,6 @@ class Args:
# Misc
misc_group = parser.add_argument_group('Misc')
misc_group.add_argument('--version', action='version', version=f'Av1an version: 5.6')
misc_group.add_argument('--version', action='version', version=f'Av1an version: 5.6-1')
# Initialize project with initial values
return parser

View file

@ -127,6 +127,8 @@ def create_video_queue_vsffms2(project: Project, split_locations: List[int]) ->
def create_video_queue_vslsmash(project: Project, split_locations: List[int]) -> List[Chunk]:
script = "from vapoursynth import core\n" \
"core.lsmas.LWLibavSource(\"{}\", cachefile=\"{}\").set_output()"
return create_video_queue_vs(project, split_locations, script)