Ai
1 Star 1 Fork 0

SeamlessM4TDemo/ASR

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
translation.py 439 Bytes
一键复制 编辑 原始数据 按行查看 历史
Jayanta Basumatary 提交于 2023-10-13 14:01 +08:00 . Add files via upload
# translation.py
from app import app
from flask import Flask, render_template
from app.routes import home_route_blueprint
from app.translate import upload_route_blueprint
from app.whiper import whisper_route_blueprint
app = Flask(__name__)
app.register_blueprint(home_route_blueprint)
app.register_blueprint(upload_route_blueprint)
app.register_blueprint(whisper_route_blueprint)
if __name__ == "__main__":
app.run()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/seamless-m4t-demo/ASR.git
git@gitee.com:seamless-m4t-demo/ASR.git
seamless-m4t-demo
ASR
ASR
main

搜索帮助