Skip to content

Commit 33da389

Browse files
authored
again timeout
1 parent 84017fb commit 33da389

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/video.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ def extract_audio_in_part(self,language,exportParam,cutTime=None,asDefault=False
196196
nameFilesExtractCut.append(nameOutFile)
197197
cmd = baseCommand.copy()
198198
cmd.extend(["-map", "0:"+str(audio['StreamOrder']), nameOutFile])
199-
self.ffmpeg_progress_audio.append(ffmpeg_pool_audio_convert.apply_async(tools.launch_cmdExt_with_timeout_reload, (cmd,3,560)))
199+
self.ffmpeg_progress_audio.append(ffmpeg_pool_audio_convert.apply_async(tools.launch_cmdExt_with_timeout_reload, (cmd,3,600)))
200200
else:
201201
for audio in self.audios[language]:
202202
if audio["compatible"]:
@@ -210,7 +210,7 @@ def extract_audio_in_part(self,language,exportParam,cutTime=None,asDefault=False
210210
nameFilesExtractCut.append(nameOutFile)
211211
cmd = baseCommand.copy()
212212
cmd.extend(["-map", "0:"+str(audio['StreamOrder']), "-ss", cut[0], "-t", cut[1] , nameOutFile])
213-
self.ffmpeg_progress_audio.append(ffmpeg_pool_audio_convert.apply_async(tools.launch_cmdExt_with_timeout_reload, (cmd,3,560)))
213+
self.ffmpeg_progress_audio.append(ffmpeg_pool_audio_convert.apply_async(tools.launch_cmdExt_with_timeout_reload, (cmd,3,600)))
214214
cutNumber += 1
215215

216216
def remove_tmp_files(self,type_file=None):

0 commit comments

Comments
 (0)