Best Way to to serve lot of gdrive small files

I have a lot of m3u8 /.ts files on google drive. Now I want to use rclone serve http to play those m3u8 files in external players . But initialising those videos taking a lot of time. each chunk size varies from 1-15 mb .is there any way to stop rclone from making 1) range request 2) checking hash(or anything which might have a lot of time complexity) . I don't care about file integrity or last modification time or anything. Simply I want to read those ts files and keep them in cache as readonly for 5 days

What does your rclone command line look like now?

Did you investigate --vfs-cache-mode full?

currently using this command

rclone serve http --fast-list --drive-pacer-min-sleep 10ms --drive-pacer-burst 200 --vfs-read-chunk-size 20M --vfs-read-chunk-size-limit 200M --vfs-cache-mode full --vfs-fast-fingerprint --vfs-cache-max-size 10G --vfs-cache-poll-interval 5m --no-modtime --no-checksum --tpslimit 10 --multi-thread-streams=12 --vfs-cache-max-age 50h --addr :8080

but the very fast m3u8 /.ts file is taking like 10-15 sec to load

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.