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.9.tar.gz
(2.4 kB
view hashes)
Built Distribution
Close
Hashes for new_reader-0.0.9-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7563328c79925e347a32a3941060b69da039b33fc802fdb81296ec9f94c21d1e |
|
MD5 | 51d0650c0687854336649bd94a11b335 |
|
BLAKE2b-256 | 5cce33e5b1eb670b97831b55a6f3266574376bb1ad87262d7aacf3ce7ec9cabc |