rsync
, whereas we are using rclone
. These are two different projects.
Rclone advertises itself as: rsync
for cloud storage, but other than that there isn't much in common. (edited)rsync
, whereas we are using rclone
. These are two different projects.
Rclone advertises itself as: rsync
for cloud storage, but other than that there isn't much in common. (edited)docker run --rm \
-p 20055:80 \
--name s3proxy-test \
-e S3PROXY_AUTHORIZATION=aws-v4 \
-e S3PROXY_ENDPOINT="http://0.0.0.0:80" \
-e S3PROXY_IDENTITY="<my_user>" \
-e S3PROXY_CREDENTIAL="<my_password>" \
-e JCLOUDS_PROVIDER="filesystem" \
-e JCLOUDS_FILESYSTEM_BASEDIR="/data" \
-e S3PROXY_CORS_ALLOW_ALL="true" \
-v /mnt/media/remote:/data:rshared \
andrewgaul/s3proxy
But its cool that that works.
Its worth noting, before I tried this - I tried RClones new experimental support for serve s3
https://rclone.org/commands/rclone_serve_s3/ - and while simply directory navigation works, and browsing of top level files, anything in a subdir does not work.docker run --rm \
-p 20055:80 \
--name s3proxy-test \
-e S3PROXY_AUTHORIZATION=aws-v4 \
-e S3PROXY_ENDPOINT="http://0.0.0.0:80" \
-e S3PROXY_IDENTITY="<my_user>" \
-e S3PROXY_CREDENTIAL="<my_password>" \
-e JCLOUDS_PROVIDER="filesystem" \
-e JCLOUDS_FILESYSTEM_BASEDIR="/data" \
-e S3PROXY_CORS_ALLOW_ALL="true" \
-v /mnt/media/remote:/data:rshared \
andrewgaul/s3proxy
But its cool that that works.
Its worth noting, before I tried this - I tried RClones new experimental support for serve s3
https://rclone.org/commands/rclone_serve_s3/ - and while simply directory navigation works, and browsing of top level files, anything in a subdir does not work. s3proxy
and its author Andrew, we've learned a lot from this project.
rcx
project had to do as well.
The challenge is that we need to make that solution work on all platforms (not just Android) and that makes this task bigger than it seems.
INI import is also coming: https://s3drive.canny.io/feature-requests/p/add-support-for-rcloneconf-import-and-ini-format (edited)rcx
project had to do as well.
The challenge is that we need to make that solution work on all platforms (not just Android) and that makes this task bigger than it seems.
INI import is also coming: https://s3drive.canny.io/feature-requests/p/add-support-for-rcloneconf-import-and-ini-format (edited).thumb
folder. Whether to generate or/and upload thumbnails back (so they can be used on other devices), there is a setting in the Profile Settings.
There are couple improvements that we'll implement in the near future. For instance thumbnail generation before uploading a file, as S3Drive at the moment would upload a file and then download it back to generate a thumbnail... but these are minor additions to the existing functionality.
Generating thumbnails from video, we already do that on mobile for S3 (as long as files aren't encrypted). Generating video thumbnails for Rclone endpoints require us to build streaming interface (likely using VFS related code), as it's not practical to download the whole file in order to generate a thumbnail. If this proves to be difficult we'll think of hacky workaround, that is rclone serve
or perhaps some tricks with RANGE
requests to get the portion of the file. (edited)