Read http(s), multicast, and udp streams like files
Project description
reader
read multicast, udp and http(s) like files
new_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 new_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.5.tar.gz
(1.5 kB
view hashes)
Built Distribution
Close
Hashes for new_reader-0.0.5-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5a6092d3ade764b96480add229ed2629361993780d46f756fc6a5720944e83aa |
|
MD5 | cba6ff654aa060b913d22c474d91c124 |
|
BLAKE2b-256 | c813e8ff33a445354759876a202f472121389dadfc26b987bd4e668295e2111e |