-
Notifications
You must be signed in to change notification settings - Fork 139
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
0.8.2 video_process command for GoPro camera does not work on Windows 10 #503
Comments
I am experiencing the same crash and the above fix by WASD42 appears to fix it. Win 10 Pro. I was doing The trace I got was:
Which led me to this issue report. |
Thanks. Will fix it in the next release. |
Could you check if the latest works for you on Windows? |
I does work for me on Windows now, yes. |
Basic information
0.8.2
Windows 10
GoPro Hero 8 Black
Steps to reproduce behavior
mapillary_tools --verbose video_process $VIDEO_PATH $PICS_PATH --geotag_source "gopro_videos" --interpolate_directions --video_sample_interval 1
Expected behavior
The process finishes successfully.
Actual behavior
The process fails with the exception:
Corresponding data
The exception is caused by using tempfile.NamedTemporaryFile() function and trying to access it by a subprocess (which is impossible on Windows since the NT version) in mapillary_tools\geotag\geotag_from_gopro.py:
I was able to fix the issue by replacing it with:
The text was updated successfully, but these errors were encountered: