Skip to content

Latest commit

 

History

History
272 lines (178 loc) · 9.07 KB

README-en.md

File metadata and controls

272 lines (178 loc) · 9.07 KB

MoneyPrinterTurbo 💸

Chinese 简体中文

Thanks to RootFTW for the translation

Simply provide a topic or keyword for a video, and it will automatically generate the video copy, video materials, video subtitles, and video background music before synthesizing a high-definition short video.

Special Thanks 🙏

Due to the deployment and usage of this project, there is a certain threshold for some beginner users. We would like to express our special thanks to

LuKa (AI Intelligent Multimedia Service Platform) for providing a free AI Video Generator service based on this project. It allows for online use without deployment, which is very convenient.

https://reccloud.com

Features 🎯

  • Complete MVC architecture, clearly structured code, easy to maintain, supports both API and Web interface
  • Supports AI-generated video copy, as well as customized copy
  • Supports various high-definition video sizes
    • Portrait 9:16, 1080x1920
    • Landscape 16:9, 1920x1080
  • Supports batch video generation, allowing the creation of multiple videos at once, then selecting the most satisfactory one
  • Supports setting the duration of video clips, facilitating adjustments to material switching frequency
  • Supports video copy in both Chinese and English
  • Supports multiple voice synthesis
  • Supports subtitle generation, with adjustable font, position, color, size, and also supports subtitle outlining
  • Supports background music, either random or specified music files, with adjustable background music volume
  • Video material sources are high-definition and royalty-free
  • Supports integration with various models such as OpenAI, moonshot, Azure, gpt4free, one-api, * qianwen* and more

Future Plans 📅

  • Support for GPT-SoVITS dubbing
  • Optimize voice synthesis using large models to make the synthesized voice sound more natural and emotionally rich
  • Add video transition effects to make the viewing experience smoother
  • Optimize the relevance of video materials
  • OLLAMA support

Video Demos 📺

Portrait 9:16

▶️ How to Add Fun to Your Life

demo-portrait-1.mp4

▶️ What is the Meaning of Life

demo-portrait-2.mp4

Landscape 16:9

▶️ What is the Meaning of Life

demo-landscape.mp4

▶️ Why Exercise

demo-landscape-2.mp4

Installation & Deployment 📥

It is recommended to create a Python virtual environment using conda

git clone https://github.com/harry0703/MoneyPrinterTurbo.git
cd MoneyPrinterTurbo
conda create -n MoneyPrinterTurbo python=3.10
conda activate MoneyPrinterTurbo
pip install -r requirements.txt

Quick Start 🚀

Video Tutorials

Prerequisites

  • Try to avoid using Chinese paths to prevent unpredictable issues
  • Ensure your network is stable, meaning you can access foreign websites normally

① Install ImageMagick

Windows:
MacOS:
brew install imagemagick
Ubuntu
sudo apt-get install imagemagick
CentOS
sudo yum install ImageMagick

② Modify the Configuration File

  • Copy the config.example.toml file and rename it to config.toml
  • Follow the instructions in the config.toml file to configure pexels_api_keys and llm_provider, and according to the llm_provider's service provider, set up the corresponding API Key
  • If it's a Windows system, imagemagick_path is your actual installation path (if you didn't change the path during installation, just uncomment it)

③ Configure Large Language Models (LLM)

  • To use GPT-4.0 or GPT-3.5, you need an API Key from OpenAI. If you don't have one, you can set llm_provider to g4f (a free-to-use GPT library https://github.com/xtekky/gpt4free)
  • Alternatively, you can apply at Moonshot. Register to get 15 yuan of trial money, which allows for about 1500 conversations. Then set llm_provider="moonshot" and moonshot_api_key. Thanks to @jerryblues for the suggestion

Launch the Web Interface 🌐

Note that you need to execute the following commands in the root directory of the MoneyPrinterTurbo project

Windows

conda activate MoneyPrinterTurbo
webui.bat

MacOS or Linux

conda activate MoneyPrinterTurbo
sh webui.sh

After launching, the browser will open automatically

The effect is shown in the following image:

Launch the API Service 🚀

python main.py

After launching, you can view the API documentation at http://127.0.0.1:8080/docs and directly test the interface online for a quick experience.

The effect is shown in the following image:

Voice Synthesis 🗣

A list of all supported voices can be viewed here: Voice List

Subtitle Generation 📜

Currently, there are 2 ways to generate subtitles:

  • edge: Faster generation speed, better performance, no specific requirements for computer configuration, but the quality may be unstable
  • whisper: Slower generation speed, poorer performance, specific requirements for computer configuration, but more reliable quality

You can switch between them by modifying the subtitle_provider in the config.toml configuration file

It is recommended to use edge mode, and switch to whisper mode if the quality of the subtitles generated is not satisfactory.

If left blank, it means no subtitles will be generated.

Background Music 🎵

Background music for videos is located in the project's resource/songs directory.

The current project includes some default music from YouTube videos. If there are copyright issues, please delete them.

Subtitle Fonts 🅰

Fonts for rendering video subtitles are located in the project's resource/fonts directory, and you can also add your own fonts.

Common Questions 🤔

❓RuntimeError: No ffmpeg exe could be found

Normally, ffmpeg will be automatically downloaded and detected. However, if your environment has issues preventing automatic downloads, you may encounter the following error:

RuntimeError: No ffmpeg exe could be found.
Install ffmpeg on your system, or set the IMAGEIO_FFMPEG_EXE environment variable.

In this case, you can download ffmpeg from https://www.gyan.dev/ffmpeg/builds/, unzip it, and set ffmpeg_path to your actual installation path.

[app]
# Please set according to your actual path, note that Windows path separators are \\
ffmpeg_path = "C:\\Users\\harry\\Downloads\\ffmpeg.exe"

❓Error generating audio or downloading videos

issue 56

failed to generate audio, maybe the network is not available. 
if you are in China, please use a VPN.

issue 44

failed to download videos, maybe the network is not available. 
if you are in China, please use a VPN.

This is likely due to network issues preventing access to foreign services. Please use a VPN to resolve this.

❓ImageMagick is not installed on your computer

issue 33

  1. Follow the example configuration provided download address to install https://imagemagick.org/archive/binaries/ImageMagick-7.1.1-29-Q16-x64-static.exe, using the static library
  2. Do not install in a path with Chinese characters to avoid unpredictable issues

issue 54

For Linux systems, you can manually install it, refer to https://cn.linux-console.net/?p=16978

Thanks to @wangwenqiao666 for their research and exploration

Feedback & Suggestions 📢

Reference Projects 📚

This project is based on https://github.com/FujiwaraChoki/MoneyPrinter and has been refactored with a lot of optimizations and added functionalities. Thanks to the original author for their spirit of open source.

License 📝

Click to view the LICENSE file