tangled
alpha
login
or
join now
dunkirk.sh
/
pstream-ng
1
fork
atom
pstream is dead; long live pstream
taciturnaxolotl.github.io/pstream-ng/
1
fork
atom
overview
issues
pulls
pipelines
fix lint
Pas
1 week ago
b2648e19
314f9574
+3
-3
3 changed files
expand all
collapse all
unified
split
example.env
src
components
player
atoms
settings
CaptionsView.tsx
hooks
useInitializePlayer.ts
+1
-1
example.env
···
16
16
# Trakt integration setup. Get these at https://trakt.tv/oauth/applications
17
17
VITE_TRAKT_CLIENT_ID=
18
18
VITE_TRAKT_CLIENT_SECRET=
19
19
-
TRAKT_REDIRECT_URI=https://pstream.mov
19
19
+
TRAKT_REDIRECT_URI=https://your domain
+1
-1
src/components/player/atoms/settings/CaptionsView.tsx
···
476
476
);
477
477
const delay = useSubtitleStore((s) => s.delay);
478
478
const appLanguage = useLanguageStore((s) => s.language);
479
479
-
const setSubtitle = useSubtitleStore((s) => s.setSubtitle);
479
479
+
// const setSubtitle = useSubtitleStore((s) => s.setSubtitle);
480
480
const matchScore = useCaptionMatchScore();
481
481
482
482
// Get combined caption list
+1
-1
src/components/player/hooks/useInitializePlayer.ts
···
1
1
-
import { useCallback, useEffect, useMemo, useRef } from "react";
1
1
+
import { useCallback, useEffect, useMemo } from "react";
2
2
3
3
import { usePlayerStore } from "@/stores/player/store";
4
4
import { useVolumeStore } from "@/stores/volume";