tangled
alpha
login
or
join now
stream.place
/
streamplace
77
fork
atom
Live video on the AT Protocol
77
fork
atom
overview
issues
1
pulls
pipelines
video-native: fix sdp post
Eli Mallon
1 week ago
0da15bee
28ca16a1
+1
-5
1 changed file
expand all
collapse all
unified
split
js
components
src
components
mobile-player
video-async.native.tsx
+1
-5
js/components/src/components/mobile-player/video-async.native.tsx
···
186
}) {
187
const selectedRendition = usePlayerStore((x) => x.selectedRendition);
188
const src = usePlayerStore((x) => x.src);
189
-
const { url } = srcToUrl(
190
-
{ src: src, selectedRendition },
191
-
PlayerProtocol.WEBRTC,
192
-
);
193
-
const [stream, stuck] = useWebRTC(url);
194
const status = usePlayerStore((x) => x.status);
195
196
const setPlayerWidth = usePlayerStore((x) => x.setPlayerWidth);
···
186
}) {
187
const selectedRendition = usePlayerStore((x) => x.selectedRendition);
188
const src = usePlayerStore((x) => x.src);
189
+
const [stream, stuck] = useWebRTC(src);
0
0
0
0
190
const status = usePlayerStore((x) => x.status);
191
192
const setPlayerWidth = usePlayerStore((x) => x.setPlayerWidth);