Hello
I need help with dropbox and rclone becouse emby first scan during so long . Im waiting 2 weeks and nothing finished. My Rclone mount is :
[Unit]
Description=RClone Service
Wants=network-online.target
After=network-online.target
[Service]
Type=notify
Environment=RCLONE_CONFIG=/opt/rclone/rclone.conf
KillMode=none
RestartSec=5
ExecStart=/usr/bin/rclone mount xxxxx: /xxxxx \
# This is for allowing users other than the user running rclone access to the mount
--allow-other \
# Google Drive is a polling remote so this value can be set very high and any changes are detected via polling.
--dir-cache-time 5000h \
# Log file location
--log-file /opt/rclone/rclone.log \
# Set the log level
--log-level NOTICE \
# I reduce the poll interval down to 10 seconds as this makes changes appear fast the API quotas per day are huge
--poll-interval 10s \
# This is setting the file permission on the mount to user and group have the same access and other can read
--umask 002 \
# Please set this to your own value below
--user-agent dropy \
# The local disk used for caching
--cache-dir=/data/cache/ \
# My quota per user / per 100 seconds is 20,000 requests. This can be found in your quota section.
# This changes the sleep calls to something much lower to take advantage of the API boost.
# change the min sleep from 100ms
--drive-pacer-min-sleep 10ms \
# Changing to have the ability to burst higher
--drive-pacer-burst 200 \
# This is used for caching files to local disk for streaming
--vfs-cache-mode full \
# This limits the cache size to the value below
--vfs-cache-max-size 250G \
# This limits the age in the cache if the size is reached and it removes the oldest files first
--vfs-cache-max-age 5000h \
# The polling interval for increased based on there is enough buffer space
--vfs-cache-poll-interval 5m \
# This sets a per file bandwidth control and I limit this to a little bigger than my largest bitrate I'd want to play
--bwlimit-file 32M
ExecStop=/bin/fusermount -uz /drive
Restart=on-failure
User=emby
Group=emby
[Install]
WantedBy=multi-user.target
and emby works fine :
2023-06-21 22:18:27.425 Debug App: Running EpisodeNfoProvider for Sky High_ The Series (2023)/S01/Sky High_ The Series_S01E03_Settling Old Scores.mkv
2023-06-21 22:18:28.689 Debug App: Running TvdbEpisodeProvider for Sky High_ The Series (2023)/S01/Sky High_ The Series_S01E03_Settling Old Scores.mkv
2023-06-21 22:18:28.690 Debug App: Running TvdbEpisodeProvider for Sky High_ The Series (2023)/S01/Sky High_ The Series_S01E03_Settling Old Scores.mkv
2023-06-21 22:18:28.727 Debug App: Running FFProbeProvider for Sky High_ The Series (2023)/S01/Sky High_ The Series_S01E04_Trojan Horse.mkv
2023-06-21 22:18:28.727 Info MediaProbeManager: ProcessRun 'ffprobe' Execute: /opt/emby-server/bin/ffprobe -i file:"Sky High_ The Series (2023)/S01/Sky High_ The Series_S01E04_Trojan Horse.mkv" -threads 0 -v info -print_format json -show_streams -show_chapters -show_format -show_data
2023-06-21 22:18:28.728 Debug MediaProbeManager: ProcessRun 'ffprobe' Started.
2023-06-21 22:18:28.728 Debug App: Running FFProbeProvider for Sky High_ The Series (2023)/S01/Sky High_ The Series_S01E04_Trojan Horse.mkv
2023-06-21 22:18:28.728 Info MediaProbeManager: ProcessRun 'ffprobe' Execute: /opt/emby-server/bin/ffprobe -i file:"Sky High_ The Series (2023)/S01/Sky High_ The Series_S01E04_Trojan Horse.mkv" -threads 0 -v info -print_format json -show_streams -show_chapters -show_format -show_data
2023-06-21 22:18:28.728 Debug MediaProbeManager: ProcessRun 'ffprobe' Started.
2023-06-21 22:18:30.389 Info MediaProbeManager: ProcessRun 'ffprobe' Process exited with code 0 - Succeeded
2023-06-21 22:18:30.394 Info FfmpegManager: ProcessRun 'CreateTitleFingerprint' Execute: /opt/emby-server/bin/ffmpeg -i file:"xxxxxxxxxSky High_ The Series (2023)/S01/Sky High_ The Series_S01E04_Trojan Horse.mkv" -t 00:10:00.000 -ac 1 -acodec pcm_s16le -ar 16000 -vn -sn -f chromaprint -fp_format raw "/var/lib/emby/cache/temp/xxxxxxx
2023-06-21 22:18:30.394 Debug FfmpegManager: ProcessRun 'CreateTitleFingerprint' Started.
2023-06-21 22:18:30.395 Info FfmpegManager: ProcessRun 'CreateTitleFingerprint' Execute: /opt/emby-server/bin/ffmpeg -i file:"XXXXXXSky High_ The Series (2023)/S01/Sky High_ The Series_S01E04_Trojan Horse.mkv" -t 00:10:00.000 -ac 1 -acodec pcm_s16le -ar 16000 -vn -sn -f chromaprint -fp_format raw "/var/lib/emby/cache/temp/xxxxxx"
2023-06-21 22:18:30.396 Debug FfmpegManager: ProcessRun 'CreateTitleFingerprint' Started.
2023-06-21 22:21:19.926 Info FfmpegManager: ProcessRun 'CreateTitleFingerprint' Process exited with code 0 - Succeeded
2023-06-21 22:21:19.926 Info FfmpegManager: ProcessRun 'CreateTitleFingerprint' Process exited with code 0 - Succeeded
with google i dont had this issue. I hope you can help