miky20567


Namemiky20567 JSON
Version 0.0.15 PyPI version JSON
download
home_pageNone
SummaryStreaming video data via networks
upload_time2024-10-02 04:02:11
maintainerNone
docs_urlNone
authorNeuralNine (Florian Dedfdov)
requires_pythonNone
licenseNone
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": null,
    "name": "miky20567",
    "maintainer": null,
    "docs_url": null,
    "requires_python": null,
    "maintainer_email": null,
    "keywords": "python, video, stream, video stream, camera stream, sockets",
    "author": "NeuralNine (Florian Dedfdov)",
    "author_email": "<mail@neuralnifdsne.com>",
    "download_url": "https://files.pythonhosted.org/packages/e7/a1/93de39a81be5a2b893980a8049ba5e3a28f1f035413e4d1db5825efb776e/miky20567-0.0.15.tar.gz",
    "platform": null,
    "description": "\n# vidstream\n\nUnder construction! Not ready for use yet! Currently experimenting and planning!\n\nDeveloped by Florian Dedov from NeuralNine (c) 2020\n\n## Examples of How To Use (Buggy Alpha Version)\n\nCreating A Server\n\n```python\nfrom vidstream import StreamingServer\n\nserver = StreamingServer('127.0.0.1', 9999)\nserver.start_server()\n\n# Other Code\n\n# When You Are Done\nserver.stop_server()\n```\n\nCreating A Client\n```python\nfrom vidstream import CameraClient\nfrom vidstream import VideoClient\nfrom vidstream import ScreenShareClient\n\n# Choose One\nclient1 = CameraClient('127.0.0.1', 9999)\nclient2 = VideoClient('127.0.0.1', 9999, 'video.mp4')\nclient3 = ScreenShareClient('127.0.0.1', 9999)\n\nclient1.start_stream()\nclient2.start_stream()\nclient3.start_stream()\n```\n\nCheck out: https://www.youtube.com/c/NeuralNine\n",
    "bugtrack_url": null,
    "license": null,
    "summary": "Streaming video data via networks",
    "version": "0.0.15",
    "project_urls": null,
    "split_keywords": [
        "python",
        " video",
        " stream",
        " video stream",
        " camera stream",
        " sockets"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "e7a193de39a81be5a2b893980a8049ba5e3a28f1f035413e4d1db5825efb776e",
                "md5": "c3db25b13c60280d3df42c10689b1129",
                "sha256": "25ec192c3afe2cbe5d17e229f302a921a8516f19d8333923fa4c41881047e948"
            },
            "downloads": -1,
            "filename": "miky20567-0.0.15.tar.gz",
            "has_sig": false,
            "md5_digest": "c3db25b13c60280d3df42c10689b1129",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 5980,
            "upload_time": "2024-10-02T04:02:11",
            "upload_time_iso_8601": "2024-10-02T04:02:11.960481Z",
            "url": "https://files.pythonhosted.org/packages/e7/a1/93de39a81be5a2b893980a8049ba5e3a28f1f035413e4d1db5825efb776e/miky20567-0.0.15.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-10-02 04:02:11",
    "github": false,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "lcname": "miky20567"
}
        
Elapsed time: 1.61347s