You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm inexperienced in Python so I don't trust myself to submit a PR, and I have no doubt my lack of experience is clear in this guide. If you're having issues getting this program working, hopefully this helps you out.
Not sure if needed: Install Xcode and then the command line tools: xcode-select --install
Run pip3 install -r requirements.txt to install the requirements. pip3 ensures you're using Python 3 and not Python 2.
If that didn't produce any errors, go to the next step. For me I received the following error: Running setup.py install for cffi ... error. To get around this I manually installed every dependency from requirements.txt (without honouring the specific version numbers):
Run python3 vimeo-download.py --url "http://...master.json?base64_init=1" (replace the URL as required)
If you get the following error: ModuleNotFoundError: No module named 'urlparse' follow this guide and try the above command again. You should now see the video start downloading!
If you then need to merge the video/audio tracks, navigate to where the file was saved and run ffmpeg -i v.mp4 -i a.mp3 -c copy merged.mp4
The text was updated successfully, but these errors were encountered:
benchesh
changed the title
Installation fails on Mac OS Catalina
How to get this program working on Mac OS Catalina
Nov 2, 2019
I'm inexperienced in Python so I don't trust myself to submit a PR, and I have no doubt my lack of experience is clear in this guide. If you're having issues getting this program working, hopefully this helps you out.
xcode-select --install
brew install ffmpeg
pip3 install -r requirements.txt
to install the requirements.pip3
ensures you're using Python 3 and not Python 2.Running setup.py install for cffi ... error
. To get around this I manually installed every dependency from requirements.txt (without honouring the specific version numbers):python3 vimeo-download.py --url "http://...master.json?base64_init=1"
(replace the URL as required)ModuleNotFoundError: No module named 'urlparse'
follow this guide and try the above command again. You should now see the video start downloading!ffmpeg -i v.mp4 -i a.mp3 -c copy merged.mp4
The text was updated successfully, but these errors were encountered: