Skip to content

Commit

Permalink
Fixing missing render_factor for local files
Browse files Browse the repository at this point in the history
At this moment if user wants to use local file as source video, render_factor variable from bottom cell will not be taken into account
  • Loading branch information
kirushyk authored Jun 21, 2020
1 parent ee1f8d2 commit 06add47
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion VideoColorizer.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"if source_url is not None:\n",
" result_path = colorizer.colorize_from_url(source_url, file_name_ext, render_factor=render_factor)\n",
"else:\n",
" result_path = colorizer.colorize_from_file_name(file_name_ext)\n",
" result_path = colorizer.colorize_from_file_name(file_name_ext, render_factor=render_factor)\n",
"\n",
"show_video_in_notebook(result_path)"
]
Expand Down

0 comments on commit 06add47

Please sign in to comment.