brjathu / PHALP

Code repository for the paper "Tracking People by Predicting 3D Appearance, Location & Pose". (CVPR 2022 Oral)
Other
259 stars 38 forks source link

Colab error. #1

Closed xiaocc612 closed 2 years ago

xiaocc612 commented 2 years ago

At first, thanks for sharing your wondful work. It seems that the demo can't output desired results. `out/Videos_results/PHALP_demo_youtube_0.mp4: No such file or directory

FileNotFoundError Traceback (most recent call last) in () 11 12 get_ipython().system('ffmpeg -i out/Videos_results/PHALP_demo_youtube_0.mp4 out/Videos_results/PHALP_demo_youtube_0_ffmpeg.mp4') ---> 13 show_local_mp4_video('out/Videos_results/PHALP_demo_youtube_0_ffmpeg.mp4', width=960, height=540)

in show_local_mp4_video(file_name, width, height) 4 import base64 5 from IPython.display import HTML ----> 6 video_encoded = base64.b64encode(io.open(file_name, 'rb').read()) 7 return HTML(data='''

FileNotFoundError: [Errno 2] No such file or directory: 'out/Videos_results/PHALP_demo_youtube_0_ffmpeg.mp4'`

And there is no output file in the /content/PHALP/out/Videos_results/results. ):

brjathu commented 2 years ago

Hi, It seems the first part of the run demo section, fails randomly (could be something to do with pytube). It is working fine on our end. Can you please try again.

xiaocc612 commented 2 years ago

It works fine now, thank you.