So I am trying to pickle.dump() a dictionary in python. Here is the general structure of my dictionary:
{"key": [tkinter.Button, moviepy.VideoFileClip, int]}
etc.
Now I am not able to run the pickle.dump() on the moviepy.VideoFileClip
object - it comes up with this error:
cannot pickle '_thread.lock' object
does anyone know how I can save a dictionary with a moviepy videofileclip to a file (I might try numpy arrays soon)