Skip to main content

Vod Hour No Timezone

GET 

https://demo.frigate.video/api/vod/:year_month/:day/:hour/:camera_name

Returns an HLS playlist for the specified date-time on the specified camera. Append /master.m3u8 or /index.m3u8 for HLS playback.

Request​

Path Parameters

    year_month Year Monthrequired
    day Dayrequired
    hour Hourrequired
    camera_name Camera Namerequired

Responses​

Successful Response

Schema
    import http.client

    conn = http.client.HTTPSConnection("demo.frigate.video")
    payload = ''
    headers = {
    'Accept': 'application/json'
    }
    conn.request("GET", "/api/vod/:year_month/:day/:hour/:camera_name", payload, headers)
    res = conn.getresponse()
    data = res.read()
    print(data.decode("utf-8"))
    Request Collapse all
    Base URL
    https://demo.frigate.video/api
    Parameters
    — pathrequired
    — pathrequired
    — pathrequired
    — pathrequired
    ResponseClear

    Click the Send API Request button above and see the response here!