@scrapecreators/cli 1.0.4 → 1.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/api-config/apis.js +39 -0
- package/package.json +1 -1
package/api-config/apis.js
CHANGED
|
@@ -9770,6 +9770,45 @@ export const apis = [
|
|
|
9770
9770
|
// },
|
|
9771
9771
|
// ],
|
|
9772
9772
|
// },
|
|
9773
|
+
{
|
|
9774
|
+
name: "Post Transcript",
|
|
9775
|
+
method: "GET",
|
|
9776
|
+
description: "Get the transcript from a Reddit video post",
|
|
9777
|
+
fullDescription:
|
|
9778
|
+
"Gets the transcript from a Reddit video post or direct v.redd.it URL when Reddit exposes a VTT caption file. Returns the raw WebVTT in raw_vtt plus a parsed plain-text transcript. If Reddit does not expose captions for the video, transcript is null and transcriptNotAvailable is true.",
|
|
9779
|
+
path: "/v1/reddit/post/transcript",
|
|
9780
|
+
params: [
|
|
9781
|
+
{
|
|
9782
|
+
name: "url",
|
|
9783
|
+
type: "string",
|
|
9784
|
+
required: true,
|
|
9785
|
+
description: "Reddit post URL or direct v.redd.it video URL",
|
|
9786
|
+
placeholder:
|
|
9787
|
+
"https://www.reddit.com/r/youseeingthisshit/comments/1oiu9xm/football_nostalgiasaints_punter_head_coach_cant/",
|
|
9788
|
+
},
|
|
9789
|
+
{
|
|
9790
|
+
name: "language",
|
|
9791
|
+
type: "string",
|
|
9792
|
+
required: false,
|
|
9793
|
+
description: "2 letter language code. Defaults to en.",
|
|
9794
|
+
placeholder: "en",
|
|
9795
|
+
},
|
|
9796
|
+
],
|
|
9797
|
+
sampleResponse: {
|
|
9798
|
+
success: true,
|
|
9799
|
+
credits_remaining: 100,
|
|
9800
|
+
url: "https://www.reddit.com/r/youseeingthisshit/comments/1oiu9xm/football_nostalgiasaints_punter_head_coach_cant/",
|
|
9801
|
+
post_id: "1oiu9xm",
|
|
9802
|
+
video_id: "eflpgc6r0zxf1",
|
|
9803
|
+
caption_url: "https://v.redd.it/eflpgc6r0zxf1/wh_ben_en.vtt",
|
|
9804
|
+
language: "en",
|
|
9805
|
+
raw_vtt:
|
|
9806
|
+
"WEBVTT\n\n00:00.000 --> 00:00.300\n<u>stop</u> on third down and now Barnhart I\nhanging\n\n00:00.300 --> 00:00.560\nstop <u>on</u> third down and now Barnhart I\nhanging",
|
|
9807
|
+
transcript:
|
|
9808
|
+
"stop on third down and now Barnhart I hanging spiraling punts touch back Barnhart could not pull it up short of the end zone...",
|
|
9809
|
+
transcriptNotAvailable: false,
|
|
9810
|
+
},
|
|
9811
|
+
},
|
|
9773
9812
|
{
|
|
9774
9813
|
name: "Search",
|
|
9775
9814
|
method: "GET",
|