1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
|
import React, { useEffect } from "react";
import Head from "next/head";
import ChatReplayPanel from "../modules/ChatReplay/ChatReplayPanel";
import { useWindowSize } from "../modules/hooks/useWindowSize";
import PageBase from "../modules/PageBase";
import VideoPlayer2 from "../modules/VideoPlayer/VideoPlayer2";
import { buttonStyle } from "../modules/VideoActionButtons";
import { IconCheck } from "../modules/icons";
import { useRouter } from "next/router";
import Linkify from "linkify-react";
const CustomPlayerPage = () => {
const router = useRouter();
const [isChatVisible, setIsChatVisible] = React.useState(false);
const { innerWidth, innerHeight } = useWindowSize();
const [playbackProgress, setPlaybackProgress] = React.useState(0);
const [urlVideo, setUrlVideo] = React.useState("");
const [urlChat, setUrlChat] = React.useState("");
const [urlYtt, setUrlYtt] = React.useState("");
const [captionFormat, setCaptionFormat] = React.useState<"srv3" | "srt" | undefined>(undefined);
const [infoJson, setInfoJson] = React.useState({} as any);
const [showPlayer, setShowPlayer] = React.useState(false);
const [dataSet, setDataSet] = React.useState(false);
const [base64Input, setBase64Input] = React.useState("");
const { query } = router;
const jsonDataUrl = query.data as string;
const timeSeconds = query.time as string;
useEffect(() => {
if (timeSeconds) {
setPlaybackProgress(parseFloat(timeSeconds));
}
}, [timeSeconds]);
const applyJsonData = (data: any) => {
const { info, video, chat, srv3, srt, captions } = data;
if (info) {
fetch(info)
.then((res) => res.json())
.then((data) => {
setInfoJson(data);
});
}
if (video) {
setUrlVideo(video);
}
if (chat) {
setUrlChat(chat);
}
if (srv3) {
setUrlYtt(srv3);
setCaptionFormat("srv3");
} else if (srt) {
setUrlYtt(srt);
setCaptionFormat("srt");
} else if (captions) {
const cap = Array.isArray(captions) ? captions[0] : captions;
if (cap?.src) {
setUrlYtt(cap.src);
setCaptionFormat(cap.format || (cap.src.toLowerCase().endsWith(".srt") ? "srt" : "srv3"));
}
}
setDataSet(true);
setShowPlayer(true);
};
if (jsonDataUrl && !dataSet) {
fetch(jsonDataUrl)
.then((res) => res.json())
.then((data) => applyJsonData(data))
.catch((error) => {
console.error("Error fetching JSON data:", error);
setDataSet(true);
setShowPlayer(true);
});
}
const handleLoadBase64 = () => {
try {
let trimmed = base64Input.trim();
const base64Match = trimmed.match(/^data:[^;]+;base64,(.*)$/);
if (base64Match) {
trimmed = base64Match[1];
}
const jsonStr = atob(trimmed);
const data = JSON.parse(jsonStr);
applyJsonData(data);
} catch (error) {
console.error("Error decoding base64 JSON:", error);
setDataSet(true);
setShowPlayer(true);
}
};
const handleFile = (
e: React.ChangeEvent<HTMLInputElement>,
setter: (newValue: string) => any,
opts?: { onFormat?: (format: "srv3" | "srt") => void }
) => {
const file = e.target.files?.[0];
if (!file) {
console.error("No file selected");
return false;
}
const url = URL.createObjectURL(file).toString();
console.log(url);
if (opts?.onFormat) {
const name = file.name.toLowerCase();
opts.onFormat(name.endsWith(".srt") ? "srt" : "srv3");
}
setter(url);
};
return (
<PageBase>
<Head>
{
infoJson && infoJson.title ? (
<title>{infoJson.title}</title>
) :
<title>a very nice video</title>
}
</Head>
{showPlayer ? (
<div className="mt-2">
<div
className={["flex lg:flex-row flex-col lg:h-auto"].join(" ")}
style={{
height: isChatVisible && innerWidth < 640 ? innerHeight : "auto",
}}
>
<div className="w-full lg:w-3/4">
<div
className="relative bg-gray-400 w-full h-0"
style={{ paddingBottom: "56.25%" }}
>
<div className="absolute inset-0 w-full h-full">
<VideoPlayer2
key={urlVideo}
videoId="custom"
srcVideo={urlVideo}
srcAudio={urlVideo}
captions={
urlYtt
? [
{
lang: "en",
src: urlYtt,
format: captionFormat,
},
]
: undefined
}
onPlaybackProgress={setPlaybackProgress}
/>
</div>
</div>
</div>
<div
className={[
"w-full lg:w-1/4 lg:pl-4",
isChatVisible ? "flex-1" : "",
].join(" ")}
>
{!urlChat ? (
<div className="border border-gray-800 rounded p-4 text-center">
<p>Chat replay unavailable</p>
</div>
) : (
<ChatReplayPanel
src={urlChat}
currentTimeSeconds={playbackProgress}
onChatToggle={setIsChatVisible}
/>
)}
</div>
</div>
{infoJson && infoJson.description ? (
<div className="mt-4 mx-6">
<h1 className="text-2xl mb-2">{infoJson.title}</h1>
<p className="text-gray-400">
{infoJson.view_count.toLocaleString()} views ·{" "}
{infoJson.upload_date.slice(0, 4) +
"-" +
infoJson.upload_date.slice(4, 6) +
"-" +
infoJson.upload_date.slice(6, 8)}
</p>
<div className="mt-4 pb-4 border-b border-gray-900">
<p className="font-bold text-lg leading-tight mb-4">
{infoJson.uploader}
</p>
<h3 className="font-bold mb-2">Description</h3>
<div className="whitespace-pre-line break-words text-gray-300">
<Linkify>{infoJson.description}</Linkify>
</div>
</div>
</div>
) : null}
{urlVideo ? (
<button
type="button"
className={[buttonStyle, "mt-4"].join(" ")}
onClick={() => setShowPlayer(false)}
>
Go back
</button>
) : null}
</div>
) : (
<div>
<div className="px-4 pb-8">
<h1 className="text-3xl mt-16 text-center">Moekyun Video Player</h1>
<p className="text-lg text-center">
You can play locally-saved video files and chat replay JSON
</p>
<p className="text-center">
Chat replay compatible with output from{" "}
<a
className="underline"
href="https://github.com/yt-dlp/yt-dlp"
target="_blank"
rel="noreferrer noopener nofollow"
>
yt-dlp
</a>
{" and "}
<a
className="underline"
href="https://pypi.org/project/chat-downloader/"
target="_blank"
rel="noreferrer noopener nofollow"
>
chat-downloader
</a>
.
</p>
<br/>
<p className="text-center">
This is a specialized version of the player that allows you to pass in a JSON data file.
</p>
</div>
<div className="mx-auto max-w-md">
<form>
<label
className={[buttonStyle, "relative cursor-pointer"].join(" ")}
>
<span>Select video</span>
<span className="ml-auto">
{urlVideo ? <IconCheck width="1em" height="1em" /> : null}
</span>
<input
type="file"
className="hidden"
onChange={(e) => handleFile(e, setUrlVideo)}
/>
</label>
<label
className={[buttonStyle, "relative cursor-pointer"].join(" ")}
>
<span>Select chat json</span>
<span className="ml-auto">
{urlChat ? <IconCheck width="1em" height="1em" /> : null}
</span>
<input
type="file"
className="hidden"
onChange={(e) => handleFile(e, setUrlChat)}
/>
</label>
<label
className={[buttonStyle, "relative cursor-pointer"].join(" ")}
>
<span>Select captions (srv3 or srt)</span>
<span className="ml-auto">
{urlYtt ? <IconCheck width="1em" height="1em" /> : null}
</span>
<input
type="file"
accept=".srv3,.xml,.srt"
className="hidden"
onChange={(e) =>
handleFile(e, setUrlYtt, {
onFormat: (fmt) => setCaptionFormat(fmt),
})
}
/>
</label>
<button
type="button"
className={[buttonStyle, "mt-8 ml-auto"].join(" ")}
onClick={() => {
setShowPlayer(true);
setDataSet(false);
}}
>
Launch player
</button>
</form>
<div className="mt-6">
<label className="block text-sm text-gray-300 mb-2">
Or paste base64-encoded JSON data
</label>
<textarea
className="w-full h-32 p-2 rounded bg-gray-800 text-gray-100 border border-gray-700 text-sm font-mono"
placeholder="Paste base64 JSON here..."
value={base64Input}
onChange={(e) => setBase64Input(e.target.value)}
/>
<button
type="button"
className={[buttonStyle, "mt-2 ml-auto"].join(" ")}
onClick={handleLoadBase64}
>
Load from base64
</button>
</div>
<div className="mt-6 mx-auto max-w-2xl text-sm text-gray-400 text-left border border-gray-800 rounded p-4">
<p className="font-bold text-gray-200 mb-2">JSON data format</p>
<p className="mb-2">
Pass a URL via the <code>?data=</code> query parameter pointing to a JSON file.
All fields are optional. Recognized top-level keys:
</p>
<ul className="list-disc list-inside space-y-1">
<li><code>info</code> - URL to a YouTube <code>info.json</code> (yt-dlp metadata)</li>
<li><code>video</code> - URL to the video file/stream</li>
<li><code>chat</code> - URL to a chat replay JSON</li>
<li><code>srv3</code> - URL to a YouTube srv3 caption XML file</li>
<li><code>srt</code> - URL to a SubRip (<code>.srt</code>) subtitle file</li>
<li><code>captions</code> - a single object <code>{`{ src, format }`}</code> or an array of them, where <code>format</code> is <code>"srv3"</code> or <code>"srt"</code></li>
</ul>
<p className="mt-2">
Example: <code>{`?data=https://example.com/session.json`}</code>
</p>
<p className="mt-4 mb-1">
Alternatively, paste the JSON content as base64 directly into the textarea above
(a leading <code>data:...;base64,</code> prefix is optional).
</p>
</div>
</div>
</div>
)}
</PageBase>
);
};
export default CustomPlayerPage;
|