yt-dlp verbose fix

This commit is contained in:
ed barz 2023-03-02 19:48:13 +01:00
parent f431151dab
commit 15006d4780
1 changed files with 3 additions and 2 deletions

View File

@ -29,6 +29,7 @@ ydl_opts = {
'outtmpl': 'output/%(id)s',
'skip_download': True,
'writethumbnail': False,
'progress' : False,
'quiet': True
}
@ -81,6 +82,6 @@ if blocks == 1 :
else :
for i in range(blocks):
print('This is part '+ str(i+1) +'/'+ str(blocks) + ' of the transcript of a video titled: « ' + title + ' » : ' + sList[i])
print('This is part '+ str(i+1) +'/'+ str(blocks) + ' of the transcript of a video titled: « ' + title + ' » : "' + sList[i] + '"')
print("Based on the " + str(blocks) + " parts of the transcript, write a summary with a list of relevant points with a title and few sentences for each point" + inFrench)
print("Based on the " + str(blocks) + " parts of the transcript of the video titled « " + title + " » provided in the previous prompts, write a summary with a list of relevant points with a title and few sentences for each point" + inFrench)