rogerxavier
commited on
Commit
•
8651acb
1
Parent(s):
9867fa1
Update 3mergeDialogToVideo.py
Browse files- 3mergeDialogToVideo.py +5 -1
3mergeDialogToVideo.py
CHANGED
@@ -125,6 +125,10 @@ def get_sorted_dialog_text(image_path:"包含后缀的文件路径")->"返回排
|
|
125 |
# 如果相邻文本框的横坐标距离大于一个标准宽度的2/3,进行断句
|
126 |
sorted_text[i] += '\n'
|
127 |
|
|
|
|
|
|
|
|
|
128 |
sorted_coordinates = [boxCoordinates[i] for i in sorted_indices]
|
129 |
print(sorted_coordinates)
|
130 |
print(sorted_text)
|
@@ -288,7 +292,7 @@ if __name__ == '__main__':
|
|
288 |
|
289 |
##获取当前图片对应的临时音频文件名称和文案时长
|
290 |
# filename, duration = get_audio_data(cur_copywrite)
|
291 |
-
filename, duration = get_audio_data(cur_copywrite
|
292 |
if filename is not None:
|
293 |
print("存放临时mp3文件的路径是",filename)
|
294 |
|
|
|
125 |
# 如果相邻文本框的横坐标距离大于一个标准宽度的2/3,进行断句
|
126 |
sorted_text[i] += '\n'
|
127 |
|
128 |
+
# 在最后一个项末尾添加"\n",从而隔开其他的漫画块对话
|
129 |
+
sorted_text[-1] += '\n'
|
130 |
+
# 在最后一个项末尾添加"\n",从而隔开其他的漫画块对话
|
131 |
+
|
132 |
sorted_coordinates = [boxCoordinates[i] for i in sorted_indices]
|
133 |
print(sorted_coordinates)
|
134 |
print(sorted_text)
|
|
|
292 |
|
293 |
##获取当前图片对应的临时音频文件名称和文案时长
|
294 |
# filename, duration = get_audio_data(cur_copywrite)
|
295 |
+
filename, duration = get_audio_data(cur_copywrite)#这里是一个原图的全部文案,不是一个漫画块的,不能在这里加\n断开不同漫画块的对话
|
296 |
if filename is not None:
|
297 |
print("存放临时mp3文件的路径是",filename)
|
298 |
|