Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 625 Bytes

File metadata and controls

25 lines (16 loc) · 625 Bytes

python -m venv env

env\Scripts\activate

pip install -r requirements.txt

uvicorn app:app --reload

pip freeze > requirements.txt

pip install moviepy pydub imageio_ffmpeg python main.py Download FFmpeg binary: • Go to: https://www.gyan.dev/ffmpeg/builds/ • Download ffmpeg-release-essentials.zip • Extract it and get the path to ffmpeg.exe (usually in bin folder) Place ffmpeg.exe in your project root or include it with PyInstaller manually. Find this section and add your ffmpeg.exe in datas: pyi-makespec --noconsole --onefile main.py pyinstaller main.spec

pyinstaller --noconsole --onefile main.py