You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
File "/home/user/miniconda/lib/python3.8/site-packages/scenedetect/__init__.py", line 193, in detect
scene_manager.stats_manager.save_to_csv(
TypeError: save_to_csv() got an unexpected keyword argument 'path'
This is fixed in the v0.6.1 branch and will be included in the next release of PySceneDetect. You can download a development version from one of the recent builds in the meantime. Thanks!
In the init file kw argument for the csv file is path but it is an unknown argument in the function:
scene_manager.stats_manager.save_to_csv(path=stats_file_path, base_timecode=video.base_timecode)
it should be -
scene_manager.stats_manager.save_to_csv(csv_file=stats_file_path, base_timecode=video.base_timecode)
The text was updated successfully, but these errors were encountered: