Read http(s), multicast, and udp streams like files
Project description
reader
read multicast, udp and http(s) like files
reader returns an open file handle.
stdin: cat video.ts | gumd
files: "/home/you/video.ts"
http(s) urls: "https://example.com/vid.ts"
udp urls: "udp://1.2.3.4:5555"
multicast urls: "udp://@227.1.3.10:4310"
Use like:
from reader import reader
with reader("udp://@227.1.3.10:4310") as data:
data.read(8192)
with reader("/home/you/video.ts") as data:
fu = data.read()
udp_data =reader("udp://1.2.3.4:5555")
chunks = [udp_data.read(188) for i in range(0,1024)]
udp_data.close()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
new_reader-0.0.3.tar.gz
(1.5 kB
view hashes)
Built Distribution
Close
Hashes for new_reader-0.0.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 739c7ac9628c4d3a2a2bf11a44e5f44b73799ce829a2b90b85e1ab08d4840ab2 |
|
MD5 | 6a9f12582c043ad2ffc726406f49c0a8 |
|
BLAKE2b-256 | 773af3200077ea96db01687cb7e545458b57730767dea818ceee00e2ee159d5c |