├── .gitignore ├── 1.png ├── 2.png ├── 3.png ├── LICENSE ├── README.md ├── conf ├── config-default.json ├── config.json ├── options-default.json └── options.json ├── demo.mp4 ├── electron-builder.json ├── electron ├── index.js ├── ipc_actions.js └── preload.js ├── icon.ico ├── index.html ├── libs ├── build_py_scripts.js ├── task_queue.js └── utils.js ├── options.json ├── package-el.js ├── package.json ├── pscripts ├── __pycache__ │ ├── chat_glm.cpython-311.pyc │ ├── chat_gpt.cpython-311.pyc │ ├── init_env.cpython-311.pyc │ ├── log.cpython-311.pyc │ ├── process_status.cpython-311.pyc │ ├── sd_api.cpython-311.pyc │ └── utils.cpython-311.pyc ├── ai_prompt.py ├── ai_tutu.py ├── batch_tts.py ├── chat_glm.py ├── chat_gpt.py ├── gen_video.py ├── init_env.py ├── log.py ├── lytest.py ├── merge_mp4.py ├── process_status.py ├── refresh_options.py ├── sd_api.py ├── split_file.py ├── test.py ├── test2.py ├── test3.py └── utils.py ├── requirements.txt ├── src ├── Main.vue ├── Main.vue.bak ├── main.js ├── pages │ ├── About.vue │ ├── App.js │ ├── App.vue │ └── Setting.vue └── router │ └── index.js └── vite.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/.gitignore -------------------------------------------------------------------------------- /1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/1.png -------------------------------------------------------------------------------- /2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/2.png -------------------------------------------------------------------------------- /3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/3.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/README.md -------------------------------------------------------------------------------- /conf/config-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/conf/config-default.json -------------------------------------------------------------------------------- /conf/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/conf/config.json -------------------------------------------------------------------------------- /conf/options-default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/conf/options-default.json -------------------------------------------------------------------------------- /conf/options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/conf/options.json -------------------------------------------------------------------------------- /demo.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/demo.mp4 -------------------------------------------------------------------------------- /electron-builder.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/electron-builder.json -------------------------------------------------------------------------------- /electron/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/electron/index.js -------------------------------------------------------------------------------- /electron/ipc_actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/electron/ipc_actions.js -------------------------------------------------------------------------------- /electron/preload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/electron/preload.js -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/icon.ico -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/index.html -------------------------------------------------------------------------------- /libs/build_py_scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/libs/build_py_scripts.js -------------------------------------------------------------------------------- /libs/task_queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/libs/task_queue.js -------------------------------------------------------------------------------- /libs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/libs/utils.js -------------------------------------------------------------------------------- /options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/options.json -------------------------------------------------------------------------------- /package-el.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/package-el.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/package.json -------------------------------------------------------------------------------- /pscripts/__pycache__/chat_glm.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/__pycache__/chat_glm.cpython-311.pyc -------------------------------------------------------------------------------- /pscripts/__pycache__/chat_gpt.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/__pycache__/chat_gpt.cpython-311.pyc -------------------------------------------------------------------------------- /pscripts/__pycache__/init_env.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/__pycache__/init_env.cpython-311.pyc -------------------------------------------------------------------------------- /pscripts/__pycache__/log.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/__pycache__/log.cpython-311.pyc -------------------------------------------------------------------------------- /pscripts/__pycache__/process_status.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/__pycache__/process_status.cpython-311.pyc -------------------------------------------------------------------------------- /pscripts/__pycache__/sd_api.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/__pycache__/sd_api.cpython-311.pyc -------------------------------------------------------------------------------- /pscripts/__pycache__/utils.cpython-311.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/__pycache__/utils.cpython-311.pyc -------------------------------------------------------------------------------- /pscripts/ai_prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/ai_prompt.py -------------------------------------------------------------------------------- /pscripts/ai_tutu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/ai_tutu.py -------------------------------------------------------------------------------- /pscripts/batch_tts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/batch_tts.py -------------------------------------------------------------------------------- /pscripts/chat_glm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/chat_glm.py -------------------------------------------------------------------------------- /pscripts/chat_gpt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/chat_gpt.py -------------------------------------------------------------------------------- /pscripts/gen_video.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/gen_video.py -------------------------------------------------------------------------------- /pscripts/init_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/init_env.py -------------------------------------------------------------------------------- /pscripts/log.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/log.py -------------------------------------------------------------------------------- /pscripts/lytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/lytest.py -------------------------------------------------------------------------------- /pscripts/merge_mp4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/merge_mp4.py -------------------------------------------------------------------------------- /pscripts/process_status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/process_status.py -------------------------------------------------------------------------------- /pscripts/refresh_options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/refresh_options.py -------------------------------------------------------------------------------- /pscripts/sd_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/sd_api.py -------------------------------------------------------------------------------- /pscripts/split_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/split_file.py -------------------------------------------------------------------------------- /pscripts/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/test.py -------------------------------------------------------------------------------- /pscripts/test2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/test2.py -------------------------------------------------------------------------------- /pscripts/test3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/test3.py -------------------------------------------------------------------------------- /pscripts/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/pscripts/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/requirements.txt -------------------------------------------------------------------------------- /src/Main.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/src/Main.vue -------------------------------------------------------------------------------- /src/Main.vue.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/src/Main.vue.bak -------------------------------------------------------------------------------- /src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/src/main.js -------------------------------------------------------------------------------- /src/pages/About.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/src/pages/About.vue -------------------------------------------------------------------------------- /src/pages/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/src/pages/App.js -------------------------------------------------------------------------------- /src/pages/App.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/src/pages/App.vue -------------------------------------------------------------------------------- /src/pages/Setting.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/src/pages/Setting.vue -------------------------------------------------------------------------------- /src/router/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/src/router/index.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laure1102/lpanda/HEAD/vite.config.js --------------------------------------------------------------------------------