Jellyfin idrive mount consume full file download

What is the problem you are having with rclone?

High egress usage when using with idrive e2 s3 hot storage

Run the command 'rclone version' and share the full output of the command.

rclone version
rclone v1.63.1

  • os/version: ubuntu 22.04 (64 bit)
  • os/kernel: 5.15.0-1040-oracle (aarch64)
  • os/type: linux
  • os/arch: arm64 (ARMv8 compatible)
  • go/version: go1.20.6
  • go/linking: static
  • go/tags: none

Which cloud storage system are you using? (eg Google Drive)

idrive e2 (s3 hot storage)

The command you were trying to run (eg rclone copy /tmp remote:tmp)

sudo rclone mount idrive: /mnt/idrive --allow-other --read-only --vfs-cache-mode off --log-file=/home/ubuntu/.config/rclone/rclone.log --log-level INFO

The rclone config contents with secrets removed.

[koofr]
type = koofr
provider = koofr
user = xxx
password = xxxx

[idrive]
type = s3
provider = IDrive
env_auth = true
access_key_id = xxx
secret_access_key = xxx
acl = private
endpoint = xxx

A log from the command with the -vv flag

2023/08/28 13:45:37 INFO  : S3 root: poll-interval is not supported by this remote

extra info:

I've mounted idrive e2 with cmd, I'm using jellyfin to watch movies

I'm not seeing any download logs.. but when i play 1min of file

I'm seeing in Idrive web download statistics entire file is consumed ( eg: video play time is 1min, file size is 2gb, I'm getting 2gb deducted from egress)

that is expected output.

that video file is very small, could be jellyfin is reading ahead, to buffer it, transcode it.

if you are hardcoding the access_key_id, what is the reason to use env_auth = true?

please understand, we cannot see into your computer, need to supply the requested information without us having to pull it from you, ok?
so please, post a full complete log that demonstrates the problem.

1 Like

once after i run this cmd
sudo rclone mount idrive: /mnt/idrive --allow-other --read-only --allow-non-empty --log-file=/home/ubuntu/.config/rclone/rclone.log -v &

i don't have any more logs in log file.. even after video watching and performing actions, any new logs are getting added.

rclone does not read any data on its own, jellyfin is doing that so check jellyfin logs.
that video file is very small, could be that jellyfin is doing read-ahead for buffering and/or transcoding.

2023/08/28 14:11:30 DEBUG : rclone: Version "v1.63.1" starting with parameters ["rclone" "mount" "idrive:" "/mnt/idrive" "--allow-other" "--read-only" "--allow-non-empty" "--log-file=/home/ubuntu/.config/rclone/rclone.log" "-vv"]
2023/08/28 14:11:30 DEBUG : Creating backend with remote "idrive:"
2023/08/28 14:11:30 DEBUG : Using config file from "/root/.config/rclone/rclone.conf"
2023/08/28 14:11:30 DEBUG : name = "idrive", root = "", opt = &s3.Options{Provider:"IDrive", EnvAuth:true, AccessKeyID:"xxx", SecretAccessKey:"xxx", Region:"", Endpoint:"xxx.sg.xxx-16.com", STSEndpoint:"", LocationConstraint:"", ACL:"private", BucketACL:"", RequesterPays:false, ServerSideEncryption:"", SSEKMSKeyID:"", SSECustomerAlgorithm:"", SSECustomerKey:"", SSECustomerKeyBase64:"", SSECustomerKeyMD5:"", StorageClass:"", UploadCutoff:209715200, CopyCutoff:4999341932, ChunkSize:5242880, MaxUploadParts:10000, DisableChecksum:false, SharedCredentialsFile:"", Profile:"", SessionToken:"", UploadConcurrency:4, ForcePathStyle:true, V2Auth:false, UseAccelerateEndpoint:false, LeavePartsOnError:false, ListChunk:1000, ListVersion:0, ListURLEncode:fs.Tristate{Value:false, Valid:false}, NoCheckBucket:false, NoHead:false, NoHeadObject:false, Enc:0x3000002, MemoryPoolFlushTime:60000000000, MemoryPoolUseMmap:false, DisableHTTP2:false, DownloadURL:"", DirectoryMarkers:false, UseMultipartEtag:fs.Tristate{Value:false, Valid:false}, UsePresignedRequest:false, Versions:false, VersionAt:fs.Time{wall:0x0, ext:0, loc:(*time.Location)(nil)}, Decompress:false, MightGzip:fs.Tristate{Value:false, Valid:false}, UseAcceptEncodingGzip:fs.Tristate{Value:false, Valid:false}, NoSystemMetadata:false}
2023/08/28 14:11:30 DEBUG : Resolving service "s3" region "us-east-1"
2023/08/28 14:11:30 INFO : S3 root: poll-interval is not supported by this remote
2023/08/28 14:11:30 DEBUG : S3 root: Mounting on "/mnt/idrive"
2023/08/28 14:11:30 DEBUG : : Root:
2023/08/28 14:11:30 DEBUG : : >Root: node=/, err=
2023/08/28 14:11:34 DEBUG : /: Attr:
2023/08/28 14:11:34 DEBUG : /: >Attr: attr=valid=1s ino=0 size=0 mode=drwxr-xr-x, err=
2023/08/28 14:11:35 DEBUG : : Statfs:
2023/08/28 14:11:35 DEBUG : : >Statfs: stat={Blocks:274877906944 Bfree:274877906944 Bavail:274877906944 Files:1000000000 Ffree:1000000000 Bsize:4096 Namelen:255 Frsize:4096}, err=

that is not a complete log, does not demonstrate the problem, not a single attempt to read any data at all.

yes, that is also a problem, why is it not logging read calls
i've also requested same to idrive support

If your objective is to limit number of downloads from the cloud use:

rclone mount src: mountpoint --vfs-cache-mode full --vfs-cache-max-size 1000G

bigger vfs-cache-max-size - less you will read from the real remote long term

These are really only two options you should care about.

thanks but i dont want them to cache locally.
and only download and play whichever chunk of file is needed

and do u think vfs-cache-max-size alone will help

If you do not want to use cache then you will have to download every byte you request every time it happens. It is rather simple logic:)

Cache purpose is to save you from downloading what was downloaded already.

And as you are talking about downloads you have to have read cache - which in rclone lingo is called FULL.

planning for similar approach, download every byte and mb when directly from remote.. but correctly entire file is getting downloaded(that too i can see from idrive egress statistics, cant see in rclone logs, which file its requesting and how much size.. etc) (for this analysis i've play 1min of video and went to idrive and i can see 2gb egress got increased).

so do check for any modifications in the way i used to mount idrive
sudo rclone mount idrive: /mnt/idrive --allow-other --read-only --vfs-cache-mode off --log-file=/home/ubuntu/.config/rclone/rclone.log --log-level INFO

at this point, we are going around in circles. PLEASE take a few minutes, re-read this entire topic, ok?

so far, despite repeated requests, you still have have posted a single rclone debug log showing the problem.
and still have not check jellyfin logs.

this not a rclone problem, not an idrive problem.
in fact, not seeing any problem at all.
rclone and jellyfin seem to be functioning as expected, based on your command and flags.

--vfs-cache-mode=full
your concern will not be solved with that, so for now, do not get side-tracked or confused with that.
it will only prevent rclone from re-downloading the same chunk from idrive.
based on your rclone version output, i assume that you are using a cheap/free cloud vm and lack local free space.

as a test, try to play one second of a large video file, see what is downloaded.

And please have a look at VFS level docs.

Only --vfs-cache-mode full provides you with caching files open for read - and this is what you are doing.

You can not use modes designed to cache writes only and complain about reading.

You do not have to set vfs-cache-max-size to many TiB value. Benefits will be clear even when you can only use 10GiB.

using oracle cloud infrastructure (but this shouldn't be a problem)

pasting jellyfin logs below (after playing a video for around minute) :

[14:27:35] [INF] [25] Emby.Server.Implementations.HttpServer.WebSocketManager: WS 175.101.105.20 closed
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.Data.PlaybackTracker: PlaybackTracker : Adding Stop Event : 08/28/2023 14:27:23
[14:27:23] [WRN] [74] Jellyfin.Server.Middleware.ResponseTimeMiddleware: Slow HTTP Response from /Sessions/Playing/Stopped to 175.101.105.20 in 0:00:01.6694618 with Status Code 204
[14:27:22] [INF] [76] Jellyfin.Api.Helpers.TranscodingJobHelper: FFmpeg exited with code 0
[14:27:22] [INF] [85] Jellyfin.Api.Helpers.TranscodingJobHelper: Deleting partial stream file(s) /config/data/transcodes/1f4a3a80c4ada36c224bade16ca58d05.m3u8
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : event_playing_id     = 80ec6b3d58031384f71d3af9a8cd300a
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : event_user_id        = a6ca1bf9b3d5424b908c5a35969e0893
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : event_user_id_int    = 3
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : session_playing_id   = 80ec6b3d58031384f71d3af9a8cd300a
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : play_method          = Transcode (v:h264 a:direct)
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : e.ClientName         = Jellyfin Android
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : ItemName             = Guardians of the Galaxy Vol. 3
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : ItemId               = 80ec6b3d58031384f71d3af9a8cd300a
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : ItemType             = Movie
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : All matches, playback registered
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Playback tracker found, adding playback info : 538b2b5100f0f338-a6ca1bf9b3d5424b908c5a35969e0893-80ec6b3d58031384f71d3af9a8cd300a
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Saving playback tracking activity in DB
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : Exited
[14:27:23] [INF] [74] Emby.Server.Implementations.Session.SessionManager: Playback stopped reported by app Jellyfin Android 2.5.3 playing Guardians of the Galaxy Vol. 3. Stopped at 3956380 ms
[14:27:23] [INF] [85] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Playback stop tracker found, processing stop : 538b2b5100f0f338-a6ca1bf9b3d5424b908c5a35969e0893-80ec6b3d58031384f71d3af9a8cd300a
[14:27:17] [WRN] [25] Jellyfin.Server.Middleware.ResponseTimeMiddleware: Slow HTTP Response from /videos/80ec6b3d-5803-1384-f71d-3af9a8cd300a/hls1/main/1318.ts?DeviceId=538b2b5100f0f338&MediaSourceId=80ec6b3d58031384f71d3af9a8cd300a&VideoCodec=h264&AudioCodec=aac&AudioStreamIndex=1&VideoBitrate=37859250&AudioBitrate=64000&AudioSampleRate=96000&MaxFramerate=23.976025&PlaySessionId=5f23fd1360be4940a95f8cfd03b14977&api_key=fe2856da7ee94c58981e0d4025e8fad4&TranscodingMaxAudioChannels=2&RequireAvc=false&Tag=d3aba54f6f5d22f91bf73c49ce9bb8f4&SegmentContainer=ts&MinSegments=1&BreakOnNonKeyFrames=False&hevc-level=93&hevc-videobitdepth=8&hevc-profile=main&hevc-audiochannels=2&aac-profile=lc&TranscodeReasons=VideoCodecNotSupported,%20AudioCodecNotSupported&runtimeTicks=39540000000&actualSegmentLengthTicks=30000000 to 175.101.105.20 in 0:00:00.8142295 with Status Code 200
[14:32:18] [INF] [65] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Adding playback tracker : 538b2b5100f0f338a6ca1bf9b3d5424b908c5a35969e0893-a6ca1bf9b3d5424b908c5a35969e0893-80ec6b3d58031384f71d3af9a8cd300a
[14:32:18] [INF] [65] Jellyfin.Plugin.PlaybackReporting.Data.PlaybackTracker: PlaybackTracker : Adding Start Event : 08/28/2023 14:32:18
[14:32:18] [INF] [65] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Creating StartPlaybackTimer Task
[14:32:19] [INF] [43] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Processing playback tracker : 538b2b5100f0f338a6ca1bf9b3d5424b908c5a35969e0893-a6ca1bf9b3d5424b908c5a35969e0893-80ec6b3d58031384f71d3af9a8cd300a
[14:58:39] [INF] [84] Jellyfin.Api.Helpers.TranscodingJobHelper: /usr/lib/jellyfin-ffmpeg/ffmpeg -analyzeduration 200M -f matroska,webm -autorotate 0 -i file:"/data/remoteidrive/multilanguage/Guardians of the Galaxy Vol. 3 (2023)/Guardians of the Galaxy Vol. 3 (2023).mkv" -map_metadata -1 -map_chapters -1 -threads 0 -map 0:0 -map 0:1 -map -0:s -codec:v:0 libx264 -preset veryfast -crf 23 -maxrate 5144176 -bufsize 10288352 -x264opts:0 subme=0:me_range=4:rc_lookahead=10:me=dia:no_chroma_me:8x8dct=0:partitions=none -force_key_frames:0 "expr:gte(t,0+n_forced*3)" -sc_threshold:v:0 0 -vf "setparams=color_primaries=bt709:color_trc=bt709:colorspace=bt709,scale=trunc(min(max(iw\,ih*a)\,min(1280\,720*a))/2)*2:trunc(min(max(iw/a\,ih)\,min(1280/a\,720))/2)*2,format=yuv420p" -codec:a:0 copy -copyts -avoid_negative_ts disabled -max_muxing_queue_size 2048 -f hls -max_delay 5000000 -hls_time 3 -hls_segment_type mpegts -start_number 0 -hls_segment_filename "/config/data/transcodes/1e21365c09df31f6ad05ee6cbc695340%d.ts" -hls_playlist_type vod -hls_list_size 0 -y "/config/data/transcodes/1e21365c09df31f6ad05ee6cbc695340.m3u8"
[14:57:55] [INF] [59] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: session.RemoteEndPoint : 175.101.105.20
[14:58:38] [INF] [56] Jellyfin.Api.Helpers.MediaInfoHelper: User policy for testing. EnablePlaybackRemuxing: True EnableVideoPlaybackTranscoding: True EnableAudioPlaybackTranscoding: True
[14:58:38] [INF] [56] Jellyfin.Api.Helpers.MediaInfoHelper: StreamBuilder.BuildVideoItem( Profile=Anonymous Profile, Path=/data/remoteidrive/multilanguage/Guardians of the Galaxy Vol. 3 (2023)/Guardians of the Galaxy Vol. 3 (2023).mkv, AudioStreamIndex=1, SubtitleStreamIndex=6 ) => ( PlayMethod=Transcode, TranscodeReason=VideoCodecNotSupported, AudioCodecNotSupported ) media:/videos/80ec6b3d-5803-1384-f71d-3af9a8cd300a/master.m3u8?MediaSourceId=80ec6b3d58031384f71d3af9a8cd300a&VideoCodec=h264&AudioCodec=aac&AudioStreamIndex=1&VideoBitrate=13594537&AudioBitrate=64000&AudioSampleRate=96000&MaxFramerate=23.976025&api_key=<token>&TranscodingMaxAudioChannels=2&RequireAvc=false&Tag=d3aba54f6f5d22f91bf73c49ce9bb8f4&SegmentContainer=ts&MinSegments=1&BreakOnNonKeyFrames=False&hevc-level=93&hevc-videobitdepth=8&hevc-profile=main&hevc-audiochannels=2&aac-profile=lc&TranscodeReasons=VideoCodecNotSupported,%20AudioCodecNotSupported
[14:58:38] [INF] [62] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Adding playback tracker : 538b2b5100f0f338-a6ca1bf9b3d5424b908c5a35969e0893-80ec6b3d58031384f71d3af9a8cd300a
[14:58:38] [INF] [62] Jellyfin.Plugin.PlaybackReporting.Data.PlaybackTracker: PlaybackTracker : Adding Start Event : 08/28/2023 14:58:38
[14:58:38] [INF] [62] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Creating StartPlaybackTimer Task
[14:58:38] [INF] [70] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : Entered
[14:58:39] [INF] [70] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Processing playback tracker : 538b2b5100f0f338-a6ca1bf9b3d5424b908c5a35969e0893-80ec6b3d58031384f71d3af9a8cd300a
[14:58:40] [INF] [70] Jellyfin.Api.Helpers.TranscodingJobHelper: Stopping ffmpeg process with q command for /config/data/transcodes/1e21365c09df31f6ad05ee6cbc695340.m3u8
[14:58:41] [INF] [70] Jellyfin.Api.Helpers.TranscodingJobHelper: FFmpeg exited with code 0
[14:58:41] [INF] [70] Jellyfin.Api.Helpers.TranscodingJobHelper: /usr/lib/jellyfin-ffmpeg/ffmpeg -analyzeduration 200M -ss 01:05:54.000 -f matroska,webm -autorotate 0 -i file:"/data/remoteidrive/multilanguage/Guardians of the Galaxy Vol. 3 (2023)/Guardians of the Galaxy Vol. 3 (2023).mkv" -map_metadata -1 -map_chapters -1 -threads 0 -map 0:0 -map 0:1 -map -0:s -codec:v:0 libx264 -preset veryfast -crf 23 -maxrate 5144176 -bufsize 10288352 -x264opts:0 subme=0:me_range=4:rc_lookahead=10:me=dia:no_chroma_me:8x8dct=0:partitions=none -force_key_frames:0 "expr:gte(t,3954+n_forced*3)" -sc_threshold:v:0 0 -vf "setparams=color_primaries=bt709:color_trc=bt709:colorspace=bt709,scale=trunc(min(max(iw\,ih*a)\,min(1280\,720*a))/2)*2:trunc(min(max(iw/a\,ih)\,min(1280/a\,720))/2)*2,format=yuv420p" -codec:a:0 copy -copyts -avoid_negative_ts disabled -max_muxing_queue_size 2048 -f hls -max_delay 5000000 -hls_time 3 -hls_segment_type mpegts -start_number 1318 -hls_segment_filename "/config/data/transcodes/1e21365c09df31f6ad05ee6cbc695340%d.ts" -hls_playlist_type vod -hls_list_size 0 -y "/config/data/transcodes/1e21365c09df31f6ad05ee6cbc695340.m3u8"
[14:58:53] [INF] [50] Jellyfin.Api.Helpers.TranscodingJobHelper: Stopping ffmpeg process with q command for /config/data/transcodes/1e21365c09df31f6ad05ee6cbc695340.m3u8
[14:58:53] [INF] [50] Jellyfin.Api.Helpers.TranscodingJobHelper: FFmpeg exited with code 0
[14:58:53] [INF] [50] Jellyfin.Api.Helpers.TranscodingJobHelper: Deleting partial stream file(s) /config/data/transcodes/1e21365c09df31f6ad05ee6cbc695340.m3u8
[14:58:54] [INF] [84] Emby.Server.Implementations.Session.SessionManager: Playback stopped reported by app Jellyfin Android 2.5.3 playing Guardians of the Galaxy Vol. 3. Stopped at 3957885 ms
[14:58:54] [INF] [62] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Playback stop tracker found, processing stop : 538b2b5100f0f338-a6ca1bf9b3d5424b908c5a35969e0893-80ec6b3d58031384f71d3af9a8cd300a
[14:58:54] [INF] [62] Jellyfin.Plugin.PlaybackReporting.Data.PlaybackTracker: PlaybackTracker : Adding Stop Event : 08/28/2023 14:58:54
[14:58:54] [INF] [62] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: Playback stop but TrackedPlaybackInfo not found! not storing activity in DB
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: session.RemoteEndPoint : 175.101.105.20
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : event_playing_id     = 80ec6b3d58031384f71d3af9a8cd300a
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : event_user_id        = a6ca1bf9b3d5424b908c5a35969e0893
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : event_user_id_int    = 3
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : session_playing_id   = 
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : session_user_id      = a6ca1bf9b3d5424b908c5a35969e0893
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : play_method          = na
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : e.ClientName         = Jellyfin Android
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : e.DeviceName         = I2012
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : ItemId               = 80ec6b3d58031384f71d3af9a8cd300a
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : ItemName             = Guardians of the Galaxy Vol. 3
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : ItemType             = Movie
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : Details do not match for play item
[14:58:58] [INF] [84] Jellyfin.Plugin.PlaybackReporting.EventMonitorEntryPoint: StartPlaybackTimer : Exited```

sorry, not going to read that. jellyfin has a great forum.

please, i keep asking for simple info and you keep not supplying it.
not sure you are taking the time to read and understand the posts.

1 Like

ok thanks,
man i kept providing what ever i can, u want simplified one's then why would i come to forum for help (a community which helps to track down problem by helping)

ever msg given by u is useless to me , unlike what i provided..

Blockquote
not sure you are taking the time to read and understand the posts.

i'm also not sure with u on same lines, u asked rclone log, i've posted what ever rclone has logged and same with jellyfin..

this is your original problem:

Then after some questions you post log file for not the same command...

and it is not full log. just the beginning. But even if full how it could help solving original question? when it is something different now?

Nobody can read your mind or watch your screen - people can only rely on what you post. And when you can not provide coherent story then it is close to impossible to guess what the issue is.

i am a volunteer taking my personal time to help you and you are not working with me.
and in the end, your issue is simple confusion for not understanding how rclone and jellyfin work.

fwiw, i have provided more solutions than anybody else in the forum, except for primary author.
and given more likes to fellow forum members, except for the primary author.

image


image

2 Likes

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