Is there any faster way of synchronize the Drive from Colab
0
1
I need to extract many frames of the videos of one dataset stored in Google Drive from colab code. I mounted drive with from google.colab import drive drive.mount('/content/gdrive') I am generating and saving the frames with ffmpeg library calling a subprocess. subprocess.call(["ffmpeg", "-i", src, dest]) or subprocess.check_call(["ffmpeg", "-i", src, dest]) The files .jpg are uploaded in drive but not fast. And, at a certain point the synchronization stops, having executed the generation process on the whole dataset in colab.
python ffmpeg subprocess google-colaboratory google-drive-realtime-api
share | improve this question
...