tangled
alpha
login
or
join now
stream.place
/
streamplace
74
fork
atom
Live video on the AT Protocol
74
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
186
}) {
187
187
const selectedRendition = usePlayerStore((x) => x.selectedRendition);
188
188
const src = usePlayerStore((x) => x.src);
189
189
-
const { url } = srcToUrl(
190
190
-
{ src: src, selectedRendition },
191
191
-
PlayerProtocol.WEBRTC,
192
192
-
);
193
193
-
const [stream, stuck] = useWebRTC(url);
189
189
+
const [stream, stuck] = useWebRTC(src);
194
190
const status = usePlayerStore((x) => x.status);
195
191
196
192
const setPlayerWidth = usePlayerStore((x) => x.setPlayerWidth);