dcordts


Namedcordts JSON
Version 0.0.13 PyPI version JSON
download
home_page
SummaryStreaming video data via networks
upload_time2022-12-29 01:36:15
maintainer
docs_urlNone
authorcalword
requires_python
license
keywords python video stream video stream camera stream sockets
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            
# vidstream

Under construction! Not ready for use yet! Currently experimenting and planning!

Developed by Florian Dedov from NeuralNine (c) 2020

## Examples of How To Use (Buggy Alpha Version)

Creating A Server

```python
from vidstream import StreamingServer

server = StreamingServer('127.0.0.1', 9999)
server.start_server()

# Other Code

# When You Are Done
server.stop_server()
```

Creating A Client
```python
from vidstream import CameraClient
from vidstream import VideoClient
from vidstream import ScreenShareClient

# Choose One
client1 = CameraClient('127.0.0.1', 9999)
client2 = VideoClient('127.0.0.1', 9999, 'video.mp4')
client3 = ScreenShareClient('127.0.0.1', 9999)

client1.start_stream()
client2.start_stream()
client3.start_stream()
```

Check out: https://www.youtube.com/c/NeuralNine

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "dcordts",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "python,video,stream,video stream,camera stream,sockets",
    "author": "calword",
    "author_email": "<mail@neuralnine.com>",
    "download_url": "https://files.pythonhosted.org/packages/7d/e6/67c7d9d11555864b01dc8a2304d00c21a229c14054bddf8c8f75bc2647e5/dcordts-0.0.13.tar.gz",
    "platform": null,
    "description": "\r\n# vidstream\r\n\r\nUnder construction! Not ready for use yet! Currently experimenting and planning!\r\n\r\nDeveloped by Florian Dedov from NeuralNine (c) 2020\r\n\r\n## Examples of How To Use (Buggy Alpha Version)\r\n\r\nCreating A Server\r\n\r\n```python\r\nfrom vidstream import StreamingServer\r\n\r\nserver = StreamingServer('127.0.0.1', 9999)\r\nserver.start_server()\r\n\r\n# Other Code\r\n\r\n# When You Are Done\r\nserver.stop_server()\r\n```\r\n\r\nCreating A Client\r\n```python\r\nfrom vidstream import CameraClient\r\nfrom vidstream import VideoClient\r\nfrom vidstream import ScreenShareClient\r\n\r\n# Choose One\r\nclient1 = CameraClient('127.0.0.1', 9999)\r\nclient2 = VideoClient('127.0.0.1', 9999, 'video.mp4')\r\nclient3 = ScreenShareClient('127.0.0.1', 9999)\r\n\r\nclient1.start_stream()\r\nclient2.start_stream()\r\nclient3.start_stream()\r\n```\r\n\r\nCheck out: https://www.youtube.com/c/NeuralNine\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Streaming video data via networks",
    "version": "0.0.13",
    "split_keywords": [
        "python",
        "video",
        "stream",
        "video stream",
        "camera stream",
        "sockets"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "md5": "4f1e27689c42660704dbbf3f5de5e8af",
                "sha256": "8c51305513fd21c09189cc63c042f80c33b8d2e2b74aa7e3551995046640f238"
            },
            "downloads": -1,
            "filename": "dcordts-0.0.13-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4f1e27689c42660704dbbf3f5de5e8af",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": null,
            "size": 11393,
            "upload_time": "2022-12-29T01:36:13",
            "upload_time_iso_8601": "2022-12-29T01:36:13.717462Z",
            "url": "https://files.pythonhosted.org/packages/37/ae/2a2e45d745d63ccc7ad919daa33b1e893b1ca3a76e67200eacc2f01535d4/dcordts-0.0.13-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "md5": "5cdd48a42adc70dd7bb739850dcdcc85",
                "sha256": "4ffc96aa263fe861c3bd2bb5b5118022b6b7d763ff092d00a87311140d1d21f7"
            },
            "downloads": -1,
            "filename": "dcordts-0.0.13.tar.gz",
            "has_sig": false,
            "md5_digest": "5cdd48a42adc70dd7bb739850dcdcc85",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 11170,
            "upload_time": "2022-12-29T01:36:15",
            "upload_time_iso_8601": "2022-12-29T01:36:15.316362Z",
            "url": "https://files.pythonhosted.org/packages/7d/e6/67c7d9d11555864b01dc8a2304d00c21a229c14054bddf8c8f75bc2647e5/dcordts-0.0.13.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2022-12-29 01:36:15",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "lcname": "dcordts"
}
        
Elapsed time: 0.09960s