yt-dlp verbose fix
This commit is contained in:
parent
f431151dab
commit
15006d4780
|
@ -29,6 +29,7 @@ ydl_opts = {
|
||||||
'outtmpl': 'output/%(id)s',
|
'outtmpl': 'output/%(id)s',
|
||||||
'skip_download': True,
|
'skip_download': True,
|
||||||
'writethumbnail': False,
|
'writethumbnail': False,
|
||||||
|
'progress' : False,
|
||||||
'quiet': True
|
'quiet': True
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -81,6 +82,6 @@ if blocks == 1 :
|
||||||
|
|
||||||
else :
|
else :
|
||||||
for i in range(blocks):
|
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)
|
Loading…
Reference in New Issue