Spaces:
Running
Running
File size: 6,510 Bytes
5690e11 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 |
# Copyright © [2024] 程序那些事
#
# All rights reserved. This software and associated documentation files (the "Software") are provided for personal and educational use only. Commercial use of the Software is strictly prohibited unless explicit permission is obtained from the author.
#
# Permission is hereby granted to any person to use, copy, and modify the Software for non-commercial purposes, provided that the following conditions are met:
#
# 1. The original copyright notice and this permission notice must be included in all copies or substantial portions of the Software.
# 2. Modifications, if any, must retain the original copyright information and must not imply that the modified version is an official version of the Software.
# 3. Any distribution of the Software or its modifications must retain the original copyright notice and include this permission notice.
#
# For commercial use, including but not limited to selling, distributing, or using the Software as part of any commercial product or service, you must obtain explicit authorization from the author.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHOR OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
#
# Author: 程序那些事
# email: flydean@163.com
# Website: [www.flydean.com](http://www.flydean.com)
# GitHub: [https://github.com/ddean2009/MoneyPrinterPlus](https://github.com/ddean2009/MoneyPrinterPlus)
#
# All rights reserved.
#
#
import os
import subprocess
import streamlit as st
from tools.file_utils import random_line_from_text_file
from tools.utils import get_must_session_option, random_with_system_time, extent_audio, run_ffmpeg_command
# 获取当前脚本的绝对路径
script_path = os.path.abspath(__file__)
# print("当前脚本的绝对路径是:", script_path)
# 脚本所在的目录
script_dir = os.path.dirname(script_path)
# 音频输出目录
audio_output_dir = os.path.join(script_dir, "../../work")
audio_output_dir = os.path.abspath(audio_output_dir)
def get_session_video_scene_text():
video_dir_list = []
video_text_list = []
if 'scene_number' not in st.session_state:
st.session_state['scene_number'] = 0
for i in range(int(st.session_state.get('scene_number'))+1):
print("select video scene " + str(i + 1))
if "video_scene_folder_" + str(i + 1) in st.session_state and st.session_state["video_scene_folder_" + str(i + 1)] is not None:
video_dir_list.append(st.session_state["video_scene_folder_" + str(i + 1)])
video_text_list.append(st.session_state["video_scene_text_" + str(i + 1)])
return video_dir_list, video_text_list
def get_video_scene_text_list(video_text_list):
video_scene_text_list = []
for video_text in video_text_list:
if video_text is not None and video_text != "":
video_line = random_line_from_text_file(video_text)
video_scene_text_list.append(video_line)
else:
video_scene_text_list.append("")
return video_scene_text_list
def get_video_text_from_list(video_scene_text_list):
return " ".join(video_scene_text_list)
def get_audio_and_video_list(audio_service, audio_rate):
audio_output_file_list = []
video_dir_list, video_text_list = get_session_video_scene_text()
video_scene_text_list = get_video_scene_text_list(video_text_list)
audio_voice = get_must_session_option("audio_voice", "请先设置配音语音")
i = 0
for video_scene_text in video_scene_text_list:
if video_scene_text is not None and video_scene_text != "":
temp_file_name = str(random_with_system_time()) + str(i)
i = i + 1
audio_output_file = os.path.join(audio_output_dir, str(temp_file_name) + ".wav")
audio_service.save_with_ssml(video_scene_text,
audio_output_file,
audio_voice,
audio_rate)
extent_audio(audio_output_file, 1)
audio_output_file_list.append(audio_output_file)
else:
st.toast("配音文字不能为空", icon="⚠️")
st.stop()
return audio_output_file_list, video_dir_list
def get_audio_and_video_list_local(audio_service):
audio_output_file_list = []
video_dir_list, video_text_list = get_session_video_scene_text()
video_scene_text_list = get_video_scene_text_list(video_text_list)
i = 0
for video_scene_text in video_scene_text_list:
temp_file_name = str(random_with_system_time()) + str(i)
i = i + 1
audio_output_file = os.path.join(audio_output_dir, str(temp_file_name) + ".wav")
audio_service.chat_with_content(video_scene_text, audio_output_file)
extent_audio(audio_output_file, 1)
audio_output_file_list.append(audio_output_file)
return audio_output_file_list, video_dir_list
def get_video_text():
video_dir_list, video_text_list = get_session_video_scene_text()
video_scene_text_list = get_video_scene_text_list(video_text_list)
return get_video_text_from_list(video_scene_text_list)
def concat_audio_list(audio_output_file_list):
temp_output_file_name = os.path.join(audio_output_dir, str(random_with_system_time()) + ".wav")
concat_audio_file = os.path.join(audio_output_dir, "concat_audio_file.txt")
with open(concat_audio_file, 'w', encoding='utf-8') as f:
for audio_file in audio_output_file_list:
f.write("file '{}'\n".format(os.path.abspath(audio_file)))
# 调用ffmpeg来合并音频
# 注意:这里假设ffmpeg在你的PATH中,否则你需要提供ffmpeg的完整路径
command = [
'ffmpeg',
'-f', 'concat',
'-safe', '0',
'-i', concat_audio_file,
'-c', 'copy', # 如果可能,直接复制流而不是重新编码
temp_output_file_name
]
run_ffmpeg_command(command)
# 完成后,删除临时文件(如果你不再需要它)
os.remove(concat_audio_file)
print(f"Audio files have been merged into {temp_output_file_name}")
return temp_output_file_name
|