-
Notifications
You must be signed in to change notification settings - Fork 93
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
First Order Motion Model ERROR at play_video #386
Comments
Sorry for my late response. When you click "RESTART RUNTIME" button, the current directory is changed to default (= But I find that updated scikit-image removed At first, run the following code (Installing scikit-image will take time on python3.10 environment) : !pip install -U Pillow
!pip install -U scikit-image~=0.18.0 (RESTART RUNTIME might be needed) Then, install nnabla and clone examples repository. We will update to be able to use latest scikit-image, but please try this instruction as of now. Sorry for inconvenience. |
thank you for your reply! !pip install -U scikit-image~=0.18.0 |
Thank you for confirming! |
Run First Order Motion Model at Google Colab.
When run "play_video('result/arbitrary/sample_src.png_by_sample_drv.mp4')",
export error below.
FileNotFoundError Traceback (most recent call last)
in <cell line: 1>()
----> 1 play_video('result/arbitrary/sample_src.png_by_sample_drv.mp4')
in play_video(filename, height, width)
4
5 def play_video(filename, height=512, width=512):
----> 6 mp4 = open(filename, 'rb').read()
7 data_url = "data:video/mp4;base64," + b64encode(mp4).decode()
8 return HTML(f"""
FileNotFoundError: [Errno 2] No such file or directory: 'result/arbitrary/sample_src.png_by_sample_drv.mp4'
Please teach me how to result this problem.
The text was updated successfully, but these errors were encountered: