Embedded Player Test

{{ $camera->title }}

ID: {{ $camera->id }}

Location: {{ $camera->location }}

Status: @if($camera->is_live) LIVE @else OFFLINE @endif

Embed URL

{{ $embedUrl }}

Embedded Player

Original Stream URL

{{ $camera->stream_url }}

HTML Implementation

<iframe
    src="{{ $embedUrl }}"
    frameborder="0"
    allowfullscreen
    style="width: 100%; height: 100%; position: absolute; top: 0; left: 0;"
    title="{{ $camera->title }}"
></iframe>