MoneyPrinterTurbo
利用AI大模型,一键生成高清短视频 Generate short videos with one click using AI LLM.
Top Related Projects
The official gpt4free repository | various collection of powerful language models | opus 4.6 gpt 5.3 kimi 2.5 deepseek v3.2 gemini 3
Reverse engineered ChatGPT API
Your API ⇒ Paid MCP. Instantly.
AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.
Examples and guides for using the OpenAI API
Quick Overview
MoneyPrinterTurbo is an open-source project that aims to automate cryptocurrency trading strategies. It provides a framework for implementing and backtesting trading algorithms, with a focus on the Binance exchange. The project is written in Python and leverages various libraries for data analysis and trading execution.
Pros
- Offers a comprehensive framework for developing and testing trading strategies
- Supports multiple timeframes and trading pairs on Binance
- Includes built-in risk management and position sizing features
- Provides detailed performance metrics and visualization tools for strategy evaluation
Cons
- Limited to the Binance exchange, reducing flexibility for traders using other platforms
- Requires a solid understanding of Python and trading concepts to effectively use and customize
- May not be suitable for high-frequency trading due to potential API rate limits
- Documentation could be more extensive, potentially increasing the learning curve for new users
Code Examples
- Defining a simple moving average crossover strategy:
from moneyprinterturbo import Strategy
class SMACrossover(Strategy):
def __init__(self, fast_period=10, slow_period=30):
self.fast_period = fast_period
self.slow_period = slow_period
def generate_signals(self, data):
data['fast_ma'] = data['close'].rolling(window=self.fast_period).mean()
data['slow_ma'] = data['close'].rolling(window=self.slow_period).mean()
data['signal'] = np.where(data['fast_ma'] > data['slow_ma'], 1, 0)
return data
- Backtesting a strategy:
from moneyprinterturbo import Backtest
strategy = SMACrossover(fast_period=10, slow_period=30)
backtest = Backtest(strategy, 'BTCUSDT', '1h', '2022-01-01', '2023-01-01')
results = backtest.run()
print(results.summary())
- Plotting backtest results:
from moneyprinterturbo import Plotter
plotter = Plotter(results)
plotter.plot_equity_curve()
plotter.plot_drawdown()
Getting Started
To get started with MoneyPrinterTurbo:
-
Install the library:
pip install moneyprinterturbo -
Set up your Binance API credentials:
from moneyprinterturbo import set_binance_credentials set_binance_credentials('your_api_key', 'your_api_secret') -
Create a strategy, run a backtest, and analyze results:
from moneyprinterturbo import Strategy, Backtest class MyStrategy(Strategy): # Define your strategy logic here strategy = MyStrategy() backtest = Backtest(strategy, 'BTCUSDT', '1h', '2023-01-01', '2023-06-01') results = backtest.run() print(results.summary())
Competitor Comparisons
The official gpt4free repository | various collection of powerful language models | opus 4.6 gpt 5.3 kimi 2.5 deepseek v3.2 gemini 3
Pros of gpt4free
- Offers a wider range of AI models and providers
- More actively maintained with frequent updates
- Larger community and contributor base
Cons of gpt4free
- May require more setup and configuration
- Potentially less stable due to frequent changes
- Relies on reverse-engineered APIs, which may break
Code Comparison
MoneyPrinterTurbo:
def get_response(prompt):
response = openai.Completion.create(
engine="text-davinci-002",
prompt=prompt,
max_tokens=150
)
return response.choices[0].text.strip()
gpt4free:
def get_response(prompt):
client = Client()
response = client.chat.completions.create(
model="gpt-3.5-turbo",
messages=[{"role": "user", "content": prompt}]
)
return response.choices[0].message.content
Both repositories aim to provide access to AI language models, but gpt4free offers a broader range of options and more frequent updates. However, it may require more setup and could be less stable. MoneyPrinterTurbo appears simpler but may have limited functionality. The code snippets show different approaches to generating responses, with gpt4free using a more modern API structure.
Reverse engineered ChatGPT API
Pros of ChatGPT
- More actively maintained with frequent updates
- Larger community and user base, leading to better support and documentation
- Offers a wider range of features and integration options
Cons of ChatGPT
- May be more complex to set up and use for beginners
- Potentially higher resource requirements due to its broader feature set
Code Comparison
While a direct code comparison is not particularly relevant for these projects due to their different focuses, we can highlight a key difference in their implementation:
ChatGPT (Python):
from revChatGPT.V1 import Chatbot
chatbot = Chatbot(config={
"email": "<your email>",
"password": "<your password>"
})
for data in chatbot.ask(
"Hello, how are you?",
):
print(data["message"])
MoneyPrinterTurbo (JavaScript):
const { Configuration, OpenAIApi } = require("openai");
const configuration = new Configuration({
apiKey: process.env.OPENAI_API_KEY,
});
const openai = new OpenAIApi(configuration);
ChatGPT uses a custom Chatbot class, while MoneyPrinterTurbo directly utilizes the OpenAI API. This reflects their different approaches and target use cases.
Your API ⇒ Paid MCP. Instantly.
Pros of Agentic
- More active development with recent commits and releases
- Better documentation and examples for getting started
- Supports multiple AI models and providers (OpenAI, Anthropic, etc.)
Cons of Agentic
- Steeper learning curve due to more complex architecture
- Requires more setup and configuration compared to MoneyPrinterTurbo
- May be overkill for simpler AI agent use cases
Code Comparison
MoneyPrinterTurbo:
def get_stock_data(symbol):
url = f"https://finance.yahoo.com/quote/{symbol}"
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
price = soup.find('fin-streamer', {'data-symbol': symbol, 'data-field': 'regularMarketPrice'}).text
return float(price)
Agentic:
from agentic import Agent, Task
agent = Agent()
task = Task("Get the current stock price for AAPL")
result = agent.run(task)
print(result)
Summary
MoneyPrinterTurbo is a simpler, more focused tool for stock-related AI tasks, while Agentic offers a more flexible and powerful framework for building AI agents across various domains. MoneyPrinterTurbo may be easier to use for beginners or those specifically interested in stock market applications, whereas Agentic provides a more comprehensive solution for developing complex AI agents with support for multiple models and providers.
AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.
Pros of AutoGPT
- More comprehensive and versatile AI agent framework
- Larger community and more active development
- Better documentation and setup instructions
Cons of AutoGPT
- More complex setup and configuration
- Higher resource requirements (memory and processing power)
- Steeper learning curve for beginners
Code Comparison
MoneyPrinterTurbo:
def get_stock_data(symbol):
url = f"https://finance.yahoo.com/quote/{symbol}"
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
price = soup.find('fin-streamer', {'data-symbol': symbol, 'data-field': 'regularMarketPrice'}).text
return float(price)
AutoGPT:
def get_current_stock_price(symbol: str, api_key: str) -> float:
base_url = "https://www.alphavantage.co/query"
function = "GLOBAL_QUOTE"
params = {
"function": function,
"symbol": symbol,
"apikey": api_key
}
response = requests.get(base_url, params=params)
data = response.json()
return float(data["Global Quote"]["05. price"])
The code snippets show that MoneyPrinterTurbo uses web scraping for stock data, while AutoGPT utilizes an API for more reliable and structured data retrieval. This reflects the overall difference in approach and complexity between the two projects.
Pros of TaskMatrix
- More comprehensive task management system with a focus on AI-driven task decomposition
- Supports multi-modal interactions, including text, image, and audio inputs
- Integrates with various AI models and tools for enhanced functionality
Cons of TaskMatrix
- More complex setup and configuration compared to MoneyPrinterTurbo
- Potentially steeper learning curve for users new to AI-driven task management
- May require more computational resources due to its advanced features
Code Comparison
TaskMatrix:
def decompose_task(task_description):
subtasks = ai_model.generate_subtasks(task_description)
return [Task(subtask) for subtask in subtasks]
def execute_task(task):
result = ai_model.execute(task.description)
return result
MoneyPrinterTurbo:
def process_trade(trade_data):
profit = calculate_profit(trade_data)
update_balance(profit)
log_trade(trade_data, profit)
def calculate_profit(trade_data):
# Profit calculation logic
return profit
The code comparison shows that TaskMatrix focuses on AI-driven task decomposition and execution, while MoneyPrinterTurbo is more specialized for trading-related operations. TaskMatrix's code demonstrates its flexibility in handling various types of tasks, whereas MoneyPrinterTurbo's code is tailored specifically for processing trades and calculating profits.
Examples and guides for using the OpenAI API
Pros of OpenAI Cookbook
- Comprehensive collection of examples and best practices for using OpenAI's APIs
- Well-maintained and regularly updated by OpenAI's team
- Covers a wide range of use cases and applications
Cons of OpenAI Cookbook
- Focuses solely on OpenAI's products, limiting its scope
- May not provide as much depth on specific applications as MoneyPrinterTurbo
Code Comparison
MoneyPrinterTurbo:
def get_stock_data(symbol):
url = f"https://finance.yahoo.com/quote/{symbol}"
response = requests.get(url)
soup = BeautifulSoup(response.text, 'html.parser')
price = soup.find('fin-streamer', {'data-symbol': symbol, 'data-field': 'regularMarketPrice'}).text
return float(price)
OpenAI Cookbook:
import openai
response = openai.Completion.create(
model="text-davinci-002",
prompt="Translate the following English text to French: '{}'",
max_tokens=60
)
The MoneyPrinterTurbo example focuses on retrieving stock data, while the OpenAI Cookbook example demonstrates how to use the OpenAI API for text translation. This reflects the different purposes of the two repositories: MoneyPrinterTurbo is tailored for financial applications, while OpenAI Cookbook provides general guidance on using OpenAI's services.
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual CopilotREADME
MoneyPrinterTurbo ð¸
ç®ä½ä¸æ | English
åªéæä¾ä¸ä¸ªè§é¢ ä¸»é¢ æ å ³é®è¯ ï¼å°±å¯ä»¥å ¨èªå¨çæè§é¢ææ¡ãè§é¢ç´ æãè§é¢åå¹ãè§é¢èæ¯é³ä¹ï¼ç¶ååæä¸ä¸ªé«æ¸ ççè§é¢ã
Webçé¢

APIçé¢

ç¹å«æè°¢ ð
ç±äºè¯¥é¡¹ç®ç é¨ç½² å **使ç¨**ï¼å¯¹äºä¸äºå°ç½ç¨æ·æ¥è¯´ï¼è¿æ¯ æä¸å®ç鍿§ï¼å¨æ¤ç¹å«æè°¢
å½åï¼AIæºè½ å¤åªä½æå¡å¹³å°ï¼ ç½ç«åºäºè¯¥é¡¹ç®ï¼æä¾çå
è´¹AIè§é¢çæå¨æå¡ï¼å¯ä»¥ä¸ç¨é¨ç½²ï¼ç´æ¥å¨çº¿ä½¿ç¨ï¼é常æ¹ä¾¿ã
- 䏿çï¼https://reccloud.cn
- è±æçï¼https://reccloud.com

æè°¢èµå© ð
æè°¢ä½ç³ https://picwish.cn 对该项ç®çæ¯æåèµå©ï¼ä½¿å¾è¯¥é¡¹ç®è½å¤æç»çæ´æ°åç»´æ¤ã
ä½ç³ä¸æ³¨äºå¾åå¤çé¢åï¼æä¾ä¸°å¯ç**å¾åå¤çå·¥å ·**ï¼å°å¤ææä½æè´ç®åï¼çæ£å®ç°è®©å¾åå¤çæ´ç®åã

åè½ç¹æ§ ð¯
- 宿´ç MVCæ¶æï¼ä»£ç **ç»ææ¸
æ°**ï¼æäºç»´æ¤ï¼æ¯æ
APIåWebçé¢ - æ¯æè§é¢ææ¡ AIèªå¨çæï¼ä¹å¯ä»¥èªå®ä¹ææ¡
- æ¯æå¤ç§ 髿¸
è§é¢ 尺寸
- ç«å± 9:16ï¼
1080x1920 - æ¨ªå± 16:9ï¼
1920x1080
- ç«å± 9:16ï¼
- æ¯æ æ¹éè§é¢çæï¼å¯ä»¥ä¸æ¬¡çæå¤ä¸ªè§é¢ï¼ç¶åéæ©ä¸ä¸ªææ»¡æç
- æ¯æ è§é¢ç段æ¶é¿ è®¾ç½®ï¼æ¹ä¾¿è°èç´ æåæ¢é¢ç
- æ¯æ 䏿 å è±æ è§é¢ææ¡
- æ¯æ å¤ç§è¯é³ åæï¼å¯ 宿¶è¯å¬ ææ
- æ¯æ åå¹çæï¼å¯ä»¥è°æ´
åä½ãä½ç½®ãé¢è²ã大å°ï¼åæ¶æ¯æåå¹æè¾¹è®¾ç½® - æ¯æ èæ¯é³ä¹ï¼éæºæè
æå®é³ä¹æä»¶ï¼å¯è®¾ç½®
èæ¯é³ä¹é³é - è§é¢ç´ ææ¥æº é«æ¸ ï¼èä¸ æ çæï¼ä¹å¯ä»¥ä½¿ç¨èªå·±ç æ¬å°ç´ æ
- æ¯æ OpenAIãMoonshotãAzureãgpt4freeãone-apiãéä¹åé®ãGoogle GeminiãOllamaãDeepSeekã æå¿ä¸è¨, Pollinations çå¤ç§æ¨¡åæ¥å
¥
- ä¸å½ç¨æ·å»ºè®®ä½¿ç¨ DeepSeek æ Moonshot ä½ä¸ºå¤§æ¨¡åæä¾åï¼å½å å¯ç´æ¥è®¿é®ï¼ä¸éè¦VPNãæ³¨åå°±éé¢åº¦ï¼åºæ¬å¤ç¨ï¼
åæè®¡å ð
- GPT-SoVITS é 鳿¯æ
- ä¼åè¯é³åæï¼å©ç¨å¤§æ¨¡åï¼ä½¿å ¶åæç声é³ï¼æ´å èªç¶ï¼æ 绪æ´å 丰å¯
- å¢å è§é¢è½¬åºææï¼ä½¿å ¶çèµ·æ¥æ´å çæµç
- å¢å æ´å¤è§é¢ç´ ææ¥æºï¼ä¼åè§é¢ç´ æåææ¡çå¹é 度
- å¢å è§é¢é¿åº¦é项ï¼çãä¸ãé¿
- æ¯ææ´å¤çè¯é³åææå¡åï¼æ¯å¦ OpenAI TTS
- èªå¨ä¸ä¼ å°YouTubeå¹³å°
è§é¢æ¼ç¤º ðº
ç«å± 9:16
æ´çå®çåæå£°é³ |
||
|---|---|---|
æ¨ªå± 16:9
é ç½®è¦æ± ð¦
- 建议æä½ CPU 4æ ¸ æä»¥ä¸ï¼å å 4G æä»¥ä¸ï¼æ¾å¡éå¿ é¡»
- Windows 10 æ MacOS 11.0 以ä¸ç³»ç»
å¿«éå¼å§ ð
å¨ Google Colab ä¸è¿è¡
å 廿¬å°ç¯å¢é ç½®ï¼ç¹å»ç´æ¥å¨ Google Colab ä¸å¿«éä½éª MoneyPrinterTurbo
Windowsä¸é®å¯å¨å
ä¸è½½ä¸é®å¯å¨å ï¼è§£åç´æ¥ä½¿ç¨ï¼è·¯å¾ä¸è¦æ 䏿ãç¹æ®å符ãç©ºæ ¼ï¼
- ç¾åº¦ç½çï¼v1.2.6ï¼: https://pan.baidu.com/s/1wg0UaIyXpO3SqIpaq790SQ?pwd=sbqx æåç : sbqx
- Google Drive (v1.2.6): https://drive.google.com/file/d/1HsbzfT7XunkrCrHw5ncUjFX8XX4zAuUh/view?usp=sharing
ä¸è½½åï¼å»ºè®®å
å廿§è¡ update.bat æ´æ°å°ææ°ä»£ç ï¼ç¶ååå» start.bat å¯å¨
å¯å¨åï¼ä¼èªå¨æå¼æµè§å¨ï¼å¦ææå¼æ¯ç©ºç½ï¼å»ºè®®æ¢æ Chrome æè Edge æå¼ï¼
å®è£ é¨ç½² ð¥
åææ¡ä»¶
- å°½éä¸è¦ä½¿ç¨ ä¸æè·¯å¾ï¼é¿å åºç°ä¸äºæ æ³é¢æçé®é¢
- 请确ä¿ä½ ç ç½ç» æ¯æ£å¸¸çï¼VPNéè¦æå¼
å ¨å±æµé模å¼
â å é代ç
git clone https://github.com/harry0703/MoneyPrinterTurbo.git
â¡ ä¿®æ¹é ç½®æä»¶ï¼å¯éï¼å»ºè®®å¯å¨åä¹å¯ä»¥å¨ WebUI éé¢é ç½®ï¼
- å°
config.example.tomlæä»¶å¤å¶ä¸ä»½ï¼å½å为config.toml - æç
§
config.tomlæä»¶ä¸ç说æï¼é 置好pexels_api_keysållm_providerï¼å¹¶æ ¹æ® llm_provider 对åºçæå¡åï¼é ç½®ç¸å ³ç API Key
Dockeré¨ç½² ð³
â å¯å¨Docker
妿æªå®è£ Dockerï¼è¯·å å®è£ https://www.docker.com/products/docker-desktop/
妿æ¯Windowsç³»ç»ï¼è¯·åèå¾®è½¯çææ¡£ï¼
- https://learn.microsoft.com/zh-cn/windows/wsl/install
- https://learn.microsoft.com/zh-cn/windows/wsl/tutorials/wsl-containers
cd MoneyPrinterTurbo
docker-compose up
注æï¼ææ°ççdockerå®è£ æ¶ä¼èªå¨ä»¥æä»¶çå½¢å¼å®è£ docker composeï¼å¯å¨å½ä»¤è°æ´ä¸ºdocker compose up
⡠访é®Webçé¢
æå¼æµè§å¨ï¼è®¿é® http://0.0.0.0:8501
⢠访é®APIææ¡£
æå¼æµè§å¨ï¼è®¿é® http://0.0.0.0:8080/docs æè http://0.0.0.0:8080/redoc
æå¨é¨ç½² ð¦
è§é¢æç¨
- 宿´çä½¿ç¨æ¼ç¤ºï¼https://v.douyin.com/iFhnwsKY/
- å¦ä½å¨Windowsä¸é¨ç½²ï¼https://v.douyin.com/iFyjoW3M
â å建èæç¯å¢
å»ºè®®ä½¿ç¨ conda å建 python èæç¯å¢
git clone https://github.com/harry0703/MoneyPrinterTurbo.git
cd MoneyPrinterTurbo
conda create -n MoneyPrinterTurbo python=3.11
conda activate MoneyPrinterTurbo
pip install -r requirements.txt
â¡ å®è£ 好 ImageMagick
-
Windows:
- ä¸è½½ https://imagemagick.org/script/download.php éæ©Windowsçæ¬ï¼åè®°ä¸å®è¦éæ© éæåº çæ¬ï¼æ¯å¦ ImageMagick-7.1.1-32-Q16-x64-static.exe
- å®è£ ä¸è½½å¥½ç ImageMagickï¼æ³¨æä¸è¦ä¿®æ¹å®è£ è·¯å¾
- ä¿®æ¹
é ç½®æä»¶ config.tomlä¸çimagemagick_pathä¸ºä½ ç å®é å®è£ è·¯å¾
-
MacOS:
brew install imagemagick -
Ubuntu
sudo apt-get install imagemagick -
CentOS
sudo yum install ImageMagick
⢠å¯å¨Webçé¢ ð
注æéè¦å° MoneyPrinterTurbo é¡¹ç® æ ¹ç®å½ 䏿§è¡ä»¥ä¸å½ä»¤
Windows
webui.bat
MacOS or Linux
sh webui.sh
å¯å¨åï¼ä¼èªå¨æå¼æµè§å¨ï¼å¦ææå¼æ¯ç©ºç½ï¼å»ºè®®æ¢æ Chrome æè Edge æå¼ï¼
⣠å¯å¨APIæå¡ ð
python main.py
å¯å¨åï¼å¯ä»¥æ¥ç APIææ¡£ http://127.0.0.1:8080/docs æè
http://127.0.0.1:8080/redoc ç´æ¥å¨çº¿è°è¯æ¥å£ï¼å¿«éä½éªã
è¯é³åæ ð£
æææ¯æç声é³å表ï¼å¯ä»¥æ¥çï¼å£°é³å表
2024-04-16 v1.1.2 æ°å¢äº9ç§Azureçè¯é³åæå£°é³ï¼éè¦é ç½®API KEYï¼è¯¥å£°é³åæçæ´å çå®ã
åå¹çæ ð
å½åæ¯æ2ç§åå¹çææ¹å¼ï¼
- edge: çæ
éåº¦å¿«ï¼æ§è½æ´å¥½ï¼å¯¹çµèé 置没æè¦æ±ï¼ä½æ¯è´¨éå¯è½ä¸ç¨³å® - whisper: çæ
éåº¦æ ¢ï¼æ§è½è¾å·®ï¼å¯¹çµèé ç½®æä¸å®è¦æ±ï¼ä½æ¯è´¨éæ´å¯éã
å¯ä»¥ä¿®æ¹ config.toml é
ç½®æä»¶ä¸ç subtitle_provider è¿è¡åæ¢
å»ºè®®ä½¿ç¨ edge 模å¼ï¼å¦æçæçåå¹è´¨éä¸å¥½ï¼ååæ¢å° whisper 模å¼
注æï¼
- whisper 模å¼ä¸éè¦å° HuggingFace ä¸è½½ä¸ä¸ªæ¨¡åæä»¶ï¼å¤§çº¦ 3GB å·¦å³ï¼è¯·ç¡®ä¿ç½ç»éç
- 妿ç空ï¼è¡¨ç¤ºä¸çæåå¹ã
ç±äºå½å æ æ³è®¿é® HuggingFaceï¼å¯ä»¥ä½¿ç¨ä»¥ä¸æ¹æ³ä¸è½½
whisper-large-v3çæ¨¡åæä»¶
ä¸è½½å°åï¼
- ç¾åº¦ç½ç: https://pan.baidu.com/s/11h3Q6tsDtjQKTjUu3sc5cA?pwd=xjs9
- 夸å ç½çï¼https://pan.quark.cn/s/3ee3d991d64b
模åä¸è½½åè§£åï¼æ´ä¸ªç®å½æ¾å° .\MoneyPrinterTurbo\models éé¢ï¼
æç»çæä»¶è·¯å¾åºè¯¥æ¯è¿æ ·: .\MoneyPrinterTurbo\models\whisper-large-v3
MoneyPrinterTurbo
ââmodels
â ââwhisper-large-v3
â config.json
â model.bin
â preprocessor_config.json
â tokenizer.json
â vocabulary.json
èæ¯é³ä¹ ðµ
ç¨äºè§é¢çèæ¯é³ä¹ï¼ä½äºé¡¹ç®ç resource/songs ç®å½ä¸ã
å½å项ç®é颿¾äºä¸äºé»è®¤çé³ä¹ï¼æ¥èªäº YouTube è§é¢ï¼å¦æä¾µæï¼è¯·å é¤ã
åå¹åä½ ð °
ç¨äºè§é¢åå¹ç渲æï¼ä½äºé¡¹ç®ç resource/fonts ç®å½ä¸ï¼ä½ ä¹å¯ä»¥æ¾è¿å»èªå·±çåä½ã
常è§é®é¢ ð¤
âRuntimeError: No ffmpeg exe could be found
é常æ åµä¸ï¼ffmpeg ä¼è¢«èªå¨ä¸è½½ï¼å¹¶ä¸ä¼è¢«èªå¨æ£æµå°ã 使¯å¦æä½ çç¯å¢æé®é¢ï¼æ æ³èªå¨ä¸è½½ï¼å¯è½ä¼éå°å¦ä¸é误ï¼
RuntimeError: No ffmpeg exe could be found.
Install ffmpeg on your system, or set the IMAGEIO_FFMPEG_EXE environment variable.
æ¤æ¶ä½ å¯ä»¥ä» https://www.gyan.dev/ffmpeg/builds/ ä¸è½½ffmpegï¼è§£ååï¼è®¾ç½® ffmpeg_path ä¸ºä½ çå®é
å®è£
è·¯å¾å³å¯ã
[app]
# è¯·æ ¹æ®ä½ çå®é
è·¯å¾è®¾ç½®ï¼æ³¨æ Windows è·¯å¾åé符为 \\
ffmpeg_path = "C:\\Users\\harry\\Downloads\\ffmpeg.exe"
âImageMagickçå®å ¨çç¥é»æ¢äºä¸ä¸´æ¶æä»¶@/tmp/tmpur5hyyto.txtç¸å ³çæä½
å¯ä»¥å¨ImageMagickçé
ç½®æä»¶policy.xml䏿¾å°è¿äºçç¥ã
è¿ä¸ªæä»¶é常ä½äº /etc/ImageMagick-X/ æ ImageMagick å®è£
ç®å½ç类似ä½ç½®ã
ä¿®æ¹å
å«pattern="@"çæ¡ç®ï¼å°rights="none"æ´æ¹ä¸ºrights="read|write"以å
许对æä»¶ç读åæä½ã
âOSError: [Errno 24] Too many open files
è¿ä¸ªé®é¢æ¯ç±äºç³»ç»æå¼æä»¶æ°éå¶å¯¼è´çï¼å¯ä»¥éè¿ä¿®æ¹ç³»ç»çæä»¶æå¼æ°éå¶æ¥è§£å³ã
æ¥çå½åéå¶
ulimit -n
妿è¿ä½ï¼å¯ä»¥è°é«ä¸äºï¼æ¯å¦
ulimit -n 10240
âWhisper 模åä¸è½½å¤±è´¥ï¼åºç°å¦ä¸é误
LocalEntryNotfoundEror: Cannot find an appropriate cached snapshotfolderfor the specified revision on the local disk and outgoing trafic has been disabled. To enablerepo look-ups and downloads online, pass 'local files only=False' as input.
æè
An error occured while synchronizing the model Systran/faster-whisper-large-v3 from the Hugging Face Hub: An error happened while trying to locate the files on the Hub and we cannot find the appropriate snapshot folder for the specified revision on the local disk. Please check your internet connection and try again. Trying to load the model directly from the local cache, if it exists.
è§£å³æ¹æ³ï¼ç¹å»æ¥çå¦ä½ä»ç½çæå¨ä¸è½½æ¨¡å
åé¦å»ºè®® ð¢
- å¯ä»¥æäº¤ issue æè pull requestã
许å¯è¯ ð
ç¹å»æ¥ç LICENSE æä»¶
Star History
Top Related Projects
The official gpt4free repository | various collection of powerful language models | opus 4.6 gpt 5.3 kimi 2.5 deepseek v3.2 gemini 3
Reverse engineered ChatGPT API
Your API ⇒ Paid MCP. Instantly.
AutoGPT is the vision of accessible AI for everyone, to use and to build on. Our mission is to provide the tools, so that you can focus on what matters.
Examples and guides for using the OpenAI API
Convert
designs to code with AI
Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.
Try Visual Copilot