This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2024-02-15
Channels
- # announcements (1)
- # babashka (1)
- # beginners (43)
- # cider (2)
- # clj-kondo (29)
- # clojure (61)
- # clojure-austin (18)
- # clojure-dev (7)
- # clojure-europe (30)
- # clojure-nl (1)
- # clojure-norway (23)
- # clojure-uk (5)
- # clojuredesign-podcast (8)
- # cloverage (1)
- # conjure (1)
- # data-science (1)
- # datahike (36)
- # datavis (1)
- # datomic (23)
- # emacs (14)
- # hyperfiddle (28)
- # lsp (5)
- # missionary (1)
- # music (1)
- # off-topic (11)
- # re-frame (11)
- # reitit (5)
- # releases (1)
- # shadow-cljs (65)
- # spacemacs (13)
- # squint (33)
- # tools-deps (56)
Anyone here knows a good test CDN that accepts Ranged Request for downloading a sample video?
I’ve tried internet archive that uses s3 and does not support it
I want to download a sample and small video and do some tests
Would you have any sample video example link for this ?
I'm asking because I've done some tests like 6 years ago, and I'm pretty sure AWS S3 did support range requests. But maybe my memory fails me here.
1
I’ll try it once I get back to computer
I don't have a video on S3 but I just tried on a JSON object and it worked just fine.
🚀 1
Tested with curl
(abridged):
> GET /[...].json HTTP/1.1
> Host:
> Range: bytes=0-10
> User-Agent: curl/7.81.0
> Accept: */*
>
* TLSv1.2 (IN), TLS header, Supplemental data (23):
* Mark bundle as not supporting multiuse
< HTTP/1.1 206 Partial Content
[...]
< Accept-Ranges: bytes
< Content-Range: bytes 0-10/6397000
< Content-Type: application/json
< Server: AmazonS3
< Content-Length: 11
👍 1