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
|
import React 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";
const CustomPlayerPage = () => {
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 [showPlayer, setShowPlayer] = React.useState(false);
const handleFile = (
e: React.ChangeEvent<HTMLInputElement>,
setter: (newValue: string) => any
) => {
const file = e.target.files?.[0];
if (!file) {
console.error("No file selected");
return false;
}
const url = URL.createObjectURL(file).toString();
console.log(url);
setter(url);
};
return (
<PageBase>
<Head>
<title>Custom Player - Ragtag Archive</title>
</Head>
{showPlayer ? (
<div>
<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,
},
]
: 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>
<button
type="button"
className={[buttonStyle, "mt-4"].join(" ")}
onClick={() => setShowPlayer(false)}
>
Go back
</button>
</div>
) : (
<div>
<div className="px-4 pb-8">
<h1 className="text-3xl mt-16 text-center">Custom 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>
</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)</span>
<span className="ml-auto">
{urlYtt ? <IconCheck width="1em" height="1em" /> : null}
</span>
<input
type="file"
className="hidden"
onChange={(e) => handleFile(e, setUrlYtt)}
/>
</label>
<button
type="button"
className={[buttonStyle, "mt-8 ml-auto"].join(" ")}
onClick={() => setShowPlayer(true)}
>
Launch player
</button>
</form>
</div>
</div>
)}
</PageBase>
);
};
export default CustomPlayerPage;
|