mirror of
https://github.com/danielmiessler/fabric
synced 2024-11-10 07:10:31 +00:00
modified: installer/client/cli/yt.py
This commit is contained in:
parent
0320cceee7
commit
4d48f299ee
@ -88,11 +88,11 @@ def main_function(url, options):
|
||||
|
||||
# Get video transcript
|
||||
try:
|
||||
transcript_list = YouTubeTranscriptApi.get_transcript(video_id)
|
||||
transcript_list = YouTubeTranscriptApi.get_transcript(video_id, languages=[options.lang])
|
||||
transcript_text = " ".join([item["text"] for item in transcript_list])
|
||||
transcript_text = transcript_text.replace("\n", " ")
|
||||
except Exception as e:
|
||||
transcript_text = f"Transcript not available. ({e})"
|
||||
transcript_text = f"Transcript not available in the selected language ({options.lang}). ({e})"
|
||||
|
||||
# Get comments if the flag is set
|
||||
comments = []
|
||||
@ -126,7 +126,8 @@ def main():
|
||||
parser.add_argument('--duration', action='store_true', help='Output only the duration')
|
||||
parser.add_argument('--transcript', action='store_true', help='Output only the transcript')
|
||||
parser.add_argument('--comments', action='store_true', help='Output the comments on the video')
|
||||
|
||||
parser.add_argument('--lang', default='en', help='Language for the transcript (default: English)')
|
||||
|
||||
args = parser.parse_args()
|
||||
|
||||
if args.url is None:
|
||||
|
Loading…
Reference in New Issue
Block a user