The slide show is so slow it is unusable.
|
Bernard_J_L
Joined: 2008-06-13
Posts: 9 |
Posted: Wed, 2009-10-28 20:42
|
|
The slide show is so slow that it is unusable. We think the issue is that we use Gallery as our storage and upload the full size large images. That way we can download the originals for other users and machines. That then makes the slide show program download these huge files only to show them at a lower resolution. It seems in the previous version we had to modify something to tell the slide show to get a smaller version of the images so it would run at a nice rate. Is there something like that with this version of Gallery. Or is there a way for the slide show to request smaller images thereby reduce the overhead of down loading these multi-megabyte files? Thanks for the help. |
|
| Login or register to post comments |

Posts: 10957
The slideshow loads the largest images available to the user. If they have permission to view the Full Version, that's what it loads. Either don't load such high res images or remove the permission to view the Full Version or wait until someone either creates a new slideshow module or enhances this one to select an option to use the resized versions.
____________________________________________
Like Gallery? Like the support? Donate now!!! See G2 live here
Posts: 10957
I was curious and decided to dig around. This actually won't be hard (I think) to override in your theme.
Copy /modules/rss/views/feed.mrss.php into /themes/YourTheme/views/ where YourTheme is the name of the theme you're using, probably wind
Find this block of code and remove everything in bold
Should look like this when done:
<media:content url="<?= $child->file_url(true) ?>" fileSize="<?= @filesize($child->file_path()) ?>" height="<?= $child->height ?>" width="<?= $child->width ?>" type="<?= $child->mime_type ?>" />I think that'll do it. Appeared to work for me.
____________________________________________
Like Gallery? Like the support? Donate now!!! See G2 live here