Ktorで動画をシークしたい
最初作ったときに動画がシークできなくて悩んだ
多分 Accept-Range が必要
routing{
route("videos"){
route("{id}"){
get {
call.response.header("Accept-Range","bytes")
call.respond(LocalFileContent(File("path/to/video")))
}
}
}
}
これであってるのかはわからないけど、とりあえず動いた。