Skip to content
This repository has been archived by the owner on Aug 16, 2024. It is now read-only.

Commit

Permalink
Merge pull request #18 from fwestenberg/v0014
Browse files Browse the repository at this point in the history
Stream and protocol fix
  • Loading branch information
fwestenberg authored Dec 21, 2020
2 parents d002c84 + dfd1794 commit c19648e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions reolink/camera_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,10 @@ def __init__(
self._username = username
self._password = password
self._channel = channel
self._stream = stream
self._protocol = protocol
self._timeout = aiohttp.ClientTimeout(total=timeout)

self._token = None
self._lease_time = None
self._motion_state = False
Expand Down Expand Up @@ -77,8 +80,6 @@ def __init__(

self._users = None
self._local_link = None
self._stream = DEFAULT_STREAM
self._protocol = DEFAULT_PROTOCOL
self._ptz_support = False

@property
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
setup(
name = 'reolink',
packages = ['reolink'],
version = '0.0.13',
version = '0.0.14',
license='MIT',
description = 'Reolink camera package',
author = 'fwestenberg',
author_email = '',
url = 'https://github.com/fwestenberg/reolink',
download_url = 'https://github.com/fwestenberg/reolink/archive/v_013.tar.gz',
download_url = 'https://github.com/fwestenberg/reolink/archive/v_014.tar.gz',
keywords = ['Reolink', 'Home-Assistant'],
install_requires=[
'ffmpeg',
Expand Down

0 comments on commit c19648e

Please sign in to comment.