> Fetch clean Markdown by appending `.md` to any page URL under https://signalwire.com/docs or requesting it with the HTTP header `Accept: text/markdown`. The root index at https://signalwire.com/docs/llms.txt lists the available documentation indexes.

# remoteStream$

> Observable of the remote media stream from the far end.

```ts
get remoteStream$(): Observable<MediaStream>
```

Observable of the remote media stream from the far end.

## remoteStream

```ts
get remoteStream(): MediaStream | null
```

Current remote media stream, or `null` if not available.

## **Examples**

```ts
call.remoteStream$.subscribe((remoteStream) => {
  console.log('remoteStream:', remoteStream);
});
```