Managed to install and use in Windows 10. #260
Fedess1986
started this conversation in
General
Replies: 1 comment 1 reply
-
|
Thanks for your interest in the software. Did you find the Windows docs at docs/windows.md ? Were they not useful? If not it would be great to understand where they are incorrect. I dont use Windows myself. I like your UI! |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
After some time struggling with this app (which is interesting, and, now I could finally use I can say it's fantastic and very promising), I researched a lot and used Gemini IA to get help to install and use this script. Also I managed to automate some things I considered I needed (like procesing in batch ) with custom scripts made with python. So I just want to share my experience, just because I couldn't find a clear how-to use this.
Install Python 3.11, it needs to be 3.11, in my case used 3.11.9, the file is:
python-3.11.9-amd64.exe; choose Cutom Install and verify that "pip" and "tcl/tk" are checked. Next screen: Install for all users. And choose where to install, in my case it was D:\Python311When installing, no need to check set PATH (unless you want to, as I created a virtual environment for this version only, which is one of the next steps).
I created a virtual environment called ChadVenv. Open CMD, and then:
D:\python311\python.exe -m venv D:\ChadVenvActivate it:
D:\Python311\ChadVenv\Scripts\activateInstall all the components/libraries:
D:\Python311\ChadVenv\Scripts\python.exe -m pip install --upgrade pip setuptools wheel(need to specify the entire path)and then
pip install "Pillow>=10.0.0" nvector pint moviepy requests pynmea2and finally
pip install gopro-overlayDownload "ffmpeg-release-essentials.zip" and uncompress to any working folder. I use: C:\FFmpeg
There you will find a "bin" folder.
It is needed to add that folder to the Windows Environmet. Click start, write "env" and choose "Edit the system environment variables". Then click on button "Environment Variables". On "System Variables" box look for "path" and double clic on it. Clic "New" and add "C:\FFmpeg\bin" (or your desired folder where FFmpeg binaries are).
Now go to CMD; activate the environment, in my case I run:
D:\Python311\ChadVenv\Scripts\activateand it should work.
After I managed to make it work, I created the automation script.
It envolves also:
I share mine, which strictly works if your files are in the same Windows unit (D:) and folder as mine, and if the ffmpeg-profiles.json file is in C:\Users\YOUR_USER.gopro-graphics
I attached the file:
ffmpeg-profiles.json
and
Chad_Overlay.py
The Chad_Overlay.py scrits can run without activating the env (it is activated from this script).
It automates the generation of overlay with transparency only files, encoded in any format you want (should be available in ffmpeg-profiles.json) but I mostly use ProRes because it has transparency and can be used easily within Adobe Premiere.
It asks for: process one file or a batch folder (all files with .mp4 extension within a folder, that came from a Gopro , in my case I have a Hero11 Black and works).
If you choose one file (Manual mode): then you specify output res (choose option or enter a custom one), choose layout (you can create your own and it will appear here, there are many layouts that came by default with the app), choose profile (available on ffmpeg-profiles.json) and then a windows popup appears to choose the file to process and then to choose the output directory.
If you choose option 2 at the begining, it is similar but you only specify the input and output directory, and the other variables are choosen to, and will apply for all files.
I hope this helps someone, it might sound silly but as I said I coulnd't find a step by step guide for this. And I managed to create an almost-GUI for this :D
Chad_Overlay.py
ffmpeg-profiles.json
Beta Was this translation helpful? Give feedback.
All reactions