ctt buckets

welcome u can store ur renders here

invite-only

webdav mount

  1. go on this pc -> mount a network drive
  2. mount \\https://buckets.ctt.cx\ to any drive letter you want
  3. put in your given credentials
  4. move in a video
  5. profit, file is available at https://bucket.ctt.cx/couleur/cian.mp4 (before it even finishes uploading)

curl endpoints

you can use curl to upload a file, or change a file's mimetype (so browser interpret file differently

The request path is always the destination — there is no /upload prefix.
Uploads accept both PUT and POST. All of these are jailed to the caller's
own directory and require Basic auth.

# upload a file (type inferred from the .mp4 extension)
curl -u foo:pass -T ./clip.mp4            https://<host>/clip.mp4
curl -u foo:pass --data-binary @clip.mp4  https://<host>/clip.mp4   # POST works too

# upload and set the type explicitly
curl -u foo:pass --data-binary @blob "https://<host>/clip?type=video/mp4"

# change the type of an EXISTING file, without re-uploading (no body)
curl -u foo:pass -X POST "https://<host>/report.bin?type=application/pdf"

?type= (alias ?content-type=) takes a type/subtype[; params] string;
anything malformed returns 400. An explicit type sticks across serving and
PROPFIND; a later plain re-upload clears it and reverts to inference.