-
Notifications
You must be signed in to change notification settings - Fork 226
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Issue with seeking while streaming (WIndows) #20
Comments
Which remote are you using? Google Drive? Are you using your own API credentials? |
Yes, Drive. And I am not. I see. Well I followed this tutorial and added them within the config and the same issue persists. I am not able to seek/scrub with the media player being used to stream. Do I need to link the JSON as well? |
I believe seeking always will be problematic due to nature of cloud storage. There are usually object storage systems and do not offer downloading specific parts of files. RcloneBrowser only invokes rclone and redirect data stream to configured player. There might be some issue with rclone you can raise with them. |
Okay, well I just thought I would mention the bug since the streaming behavior works normally if the remote is mounted and the media file is played. Thank you. |
Streaming invokes rclone reading a remote file and redirecting stream of data to your configured player. It can't jump forward as all stream has to be read first. When you mount remote there is another layer (FUSE) which provides buffering. FUSE simulates typical file system and might read file content in advance. When already buffered in file system your player can read whatever part of the file you request. And in both cases player provides its own buffering So it is not a bug per se but rather nature of rclone. |
Ok then, this issue can be closed, thank you. |
I've tried out a few media players on the Stream function but none of them seem to be able to seek. If I mount the remote and stream that way seeking is possible, but there is another current issue with unmounting on Windows that is already open.
I guess there might be some configuration issues with the media player, but it lead me to think that it might be worthwhile to have some advanced config options (additional flags) the stream and mounting functions, just in case there are issues.
Thank you again for taking up this project which I feel is severely needed for rclone (their current gui is way behind).
The text was updated successfully, but these errors were encountered: