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
Right now , if we have a krec file in an mkv container i.e. filename.krec.mkv., then to load the krec we have to do
krec_file_path="path/to/name.krec"# path to temporarily place a .krec filekrec.extract_from_video(mkv_file_path, krec_file_path)
krec_obj=krec.KRec.load(krec_file_path)
This should be replaced by
krec_obj=krec.extract_from_video(mkv_file_path)
The text was updated successfully, but these errors were encountered:
Also, calling this function also riggers a bunch of ffmpeg output in the terminal, this should be turned off by default. I suggest adding an argument verbose which is False by default.
Right now , if we have a krec file in an mkv container i.e. filename.krec.mkv., then to load the krec we have to do
This should be replaced by
The text was updated successfully, but these errors were encountered: