Rename transcript() to get_transcript() in YT API

このコミットが含まれているのは:
syeopite 2023-07-23 16:50:40 -07:00
コミット 3509752b79
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: A73C186DA3955A1A
2個のファイルの変更3行の追加3行の削除

ファイルの表示

@ -89,7 +89,7 @@ module Invidious::Routes::API::V1::Videos
if CONFIG.use_innertube_for_captions
params = Invidious::Videos::Transcript.generate_param(id, caption.language_code, caption.auto_generated)
initial_data = YoutubeAPI.transcript(params.to_s)
initial_data = YoutubeAPI.get_transcript(params)
webvtt = Invidious::Videos::Transcript.convert_transcripts_to_vtt(initial_data, caption.language_code)
else

ファイルの表示

@ -558,7 +558,7 @@ module YoutubeAPI
end
####################################################################
# transcript(params)
# get_transcript(params, client_config?)
#
# Requests the youtubei/v1/get_transcript endpoint with the required headers
# and POST data in order to get a JSON reply.
@ -569,7 +569,7 @@ module YoutubeAPI
# `struct ClientConfig` above for more details).
#
def transcript(
def get_transcript(
params : String,
client_config : ClientConfig | Nil = nil
) : Hash(String, JSON::Any)