Followed this steps but now i want the files from my phone to be encrypted and be able to be viewed in windows decrypted and encrypted

~ $ rclone copy /storage/emulated/0/content/TheyLoveHerStoriTape.mp4 public_html: -vv --dry-run
2023/02/16 16:00:18 DEBUG : rclone: Version "1.61.1-termux" starting with parameters ["rclone" "copy" "/storage/emulated/0/content/TheyLoveHerStoriTape.mp4" "public_html:" "-vv" "--dry-run"]
2023/02/16 16:00:18 DEBUG : Creating backend with remote "/storage/emulated/0/content/TheyLoveHerStoriTape.mp4"
2023/02/16 16:00:18 DEBUG : Using config file from "/data/data/com.termux/files/home/.config/rclone/rclone.conf"
2023/02/16 16:00:18 DEBUG : Creating backend with remote "public_html:"
2023/02/16 16:00:18 DEBUG : Creating backend with remote "/storage/emulated/0/content"
2023/02/16 16:00:18 ERROR : Local file system at /storage/emulated/0/content/TheyLoveHerStoriTape.mp4: error reading source root directory: directory not found
2023/02/16 16:00:18 DEBUG : Encrypted drive 'public_html:': Waiting for checks to finish
2023/02/16 16:00:18 DEBUG : Encrypted drive 'public_html:': Waiting for transfers to finish
2023/02/16 16:00:18 ERROR : Attempt 1/3 failed with 1 errors and: directory not found
2023/02/16 16:00:18 ERROR : Local file system at /storage/emulated/0/content/TheyLoveHerStoriTape.mp4: error reading source root directory: directory not found
2023/02/16 16:00:18 DEBUG : Encrypted drive 'public_html:': Waiting for checks to finish
2023/02/16 16:00:18 DEBUG : Encrypted drive 'public_html:': Waiting for transfers to finish
2023/02/16 16:00:18 ERROR : Attempt 2/3 failed with 1 errors and: directory not found
2023/02/16 16:00:18 ERROR : Local file system at /storage/emulated/0/content/TheyLoveHerStoriTape.mp4: error reading source root directory: directory not found
2023/02/16 16:00:18 DEBUG : Encrypted drive 'public_html:': Waiting for checks to finish
2023/02/16 16:00:18 DEBUG : Encrypted drive 'public_html:': Waiting for transfers to finish
2023/02/16 16:00:18 ERROR : Attempt 3/3 failed with 1 errors and: directory not found
2023/02/16 16:00:18 NOTICE:
Transferred: 0 B / 0 B, -, 0 B/s, ETA -
Errors: 1 (retrying may help)
Elapsed time: 0.1s

2023/02/16 16:00:18 DEBUG : 2 go routines active
2023/02/16 16:00:18 Failed to copy: directory not found
~ $

error reading source root directory: directory not found

if that file does not exist, rclone gets confused, thinks that is a dir name.

In the old folder where I have all my files that file exists. So I don't know why it's says it doesn't.

can you post the output of
ls -al /storage/emulated/0/content/TheyLoveHerStoriTape.mp4

~ $ ls -al /storage/emulated/0/content/TheyLoveHerStoriTape.mp4
ls: cannot access '/storage/emulated/0/content/TheyLoveHerStoriTape.mp4': No such file or directory
~ $ rclone ls -al /storage/emulated/0/content/TheyLoveHerStoriTape.mp4
Error: unknown shorthand flag: 'a' in -al
Usage:
rclone ls remote:path [flags]

Flags:
-h, --help help for ls

Use "rclone [command] --help" for more information about a command.
Use "rclone help flags" for to see the global flags.
Use "rclone help backends" for a list of supported services.

2023/02/16 16:29:22 Fatal error: unknown shorthand flag: 'a' in -al
~ $

pick a file that exists, ok?

and with rclone, use rclone ls not rclone ls -al

Wait wait there's nothing inside that folder at all.
You asked me to copy a dir that empty. So no files exist at all.
Only in my old remote path are the files.

And I showed you my screenshot with the file that doesn't exist but does. It so confusing

See here cant copy stuff that isn't there

hard to read that screenshot. best to use command line.

please no screenshots, hard to read and there is no need for it.

sorry, not sure how to explain this differently.
pick a file that exists on android and copy it into the crypt, as per the command i shared.

I think we mean the same but different understanding. I just copied all my old files from my old folder to the empty folder via file manager and did your command

Now i get this

$ rclone ls /storage/emulated/0/content/TheyLoveHerStoriTape.mp4
391226436 TheyLoveHerStoriTape.mp4

ok then, copy that file in the crypt remote.

~ $ rclone ls /storage/emulated/0/content/TheyLoveHerStoriTape.mp4
391226436 TheyLoveHerStoriTape.mp4
~ $ rclone copy /storage/emulated/0/content/TheyLoveHerStoriTape.mp4 public_html: -vv --dry-run
2023/02/16 16:42:11 DEBUG : rclone: Version "1.61.1-termux" starting with parameters ["rclone" "copy" "/storage/emulated/0/content/TheyLoveHerStoriTape.mp4" "public_html:" "-vv" "--dry-run"]
2023/02/16 16:42:11 DEBUG : Creating backend with remote "/storage/emulated/0/content/TheyLoveHerStoriTape.mp4"
2023/02/16 16:42:11 DEBUG : Using config file from "/data/data/com.termux/files/home/.config/rclone/rclone.conf"
2023/02/16 16:42:11 DEBUG : fs cache: adding new entry for parent of "/storage/emulated/0/content/TheyLoveHerStoriTape.mp4", "/storage/emulated/0/content"
2023/02/16 16:42:11 DEBUG : Creating backend with remote "public_html:"
2023/02/16 16:42:11 DEBUG : TheyLoveHerStoriTape.mp4: Need to transfer - File not found at Destination
2023/02/16 16:42:11 NOTICE: TheyLoveHerStoriTape.mp4: Skipped copy as --dry-run is set (size 373.103Mi)
2023/02/16 16:42:11 NOTICE:
Transferred: 373.103 MiB / 373.103 MiB, 100%, 0 B/s, ETA -
Transferred: 1 / 1, 100%
Elapsed time: 0.0s

2023/02/16 16:42:11 DEBUG : 4 go routines active

now remove --dry-run and run again

~ $ rclone copy /storage/emulated/0/content/TheyLoveHerStoriTape.mp4 public_html: -vv
2023/02/16 16:46:32 DEBUG : rclone: Version "1.61.1-termux" starting with parameters ["rclone" "copy" "/storage/emulated/0/content/TheyLoveHerStoriTape.mp4" "public_html:" "-vv"]
2023/02/16 16:46:32 DEBUG : Creating backend with remote "/storage/emulated/0/content/TheyLoveHerStoriTape.mp4"
2023/02/16 16:46:32 DEBUG : Using config file from "/data/data/com.termux/files/home/.config/rclone/rclone.conf"
2023/02/16 16:46:32 DEBUG : fs cache: adding new entry for parent of "/storage/emulated/0/content/TheyLoveHerStoriTape.mp4", "/storage/emulated/0/content"
2023/02/16 16:46:32 DEBUG : Creating backend with remote "public_html:"
2023/02/16 16:46:32 DEBUG : TheyLoveHerStoriTape.mp4: Need to transfer - File not found at Destination
2023/02/16 16:46:32 DEBUG : preAllocate: got error on fallocate, trying combination 1/2: operation not supported
2023/02/16 16:46:32 DEBUG : preAllocate: got error on fallocate, trying combination 2/2: operation not supported
2023/02/16 16:46:36 DEBUG : TheyLoveHerStoriTape.mp4: md5 = e2af7ab5b62f7112373146b3d398b118 OK

ok, the file was copied.

harmless message
add --local-no-preallocate

Like this rclone copy /storage/emulated/0/content/TheyLoveHerStoriTape.mp4 public_html: -vv --local-no-preallocate
?

why not just try it yourself?

Don't wanna fuck up the process