Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

upload multiple files-without zipping
jhill8
#1 Posted : Wednesday, 5 August 2009 3:04:55 AM(UTC)
Rank: Advanced Member

Joined: 16/07/2008(UTC)
Posts: 72
Man
Location: California




Uploading directly to gsp is not only cool but saves the synchronization step.


Wish List:upload multiple files-without zipping


Zipping to a single file does not work form me

.jpg are pretty well compressed anyway.
.cr2 (RAW) images are non-lossy compressed very well as well.

Having to zip a gig of pics does not work for me: it is just easier, faster just to upload the old way then resync as usual

Keep up the good work, Roger.

Thanks, John
Roger Martin
#2 Posted : Wednesday, 5 August 2009 3:44:07 AM(UTC)
Roger Martin

Rank: Administration

Joined: 3/08/2007(UTC)
Posts: 3,300
Location: Fort Atkinson, WI

High on my priority list is to build a little utility that lets you drag and drop files from your hard drive to the gallery. The goal is to make copying files to the gallery as easy as copying files in Windows Explorer.
Roger Martin
Creator and Lead Developer of Gallery Server Pro
dkm
#3 Posted : Friday, 7 August 2009 8:04:44 AM(UTC)
Rank: Member

Joined: 29/01/2009(UTC)
Posts: 13
Location: Croatia

it might be easier to implement for example http://www.codeplex.com/SLFileUpload/ with silverlight where you can select files like in windows explorer or flash like http://www.codeproject.c...aspnet/FlashUpload.aspx
,no html inpunt restriction of 1 object...
Roger Martin
#5 Posted : Friday, 7 August 2009 8:34:51 AM(UTC)
Roger Martin

Rank: Administration

Joined: 3/08/2007(UTC)
Posts: 3,300
Location: Fort Atkinson, WI

Those are nice projects - I have been keeping an eye on the Silverlight one. But a critical feature that I want is the ability to create the compressed image on the client *before* uploading it. Many (most?) users don't really need the high resolution original and if you can upload a 100KB file instead of a 4 MB file that would be a really nice improvement.

I haven't yet figured out if this is possible with Silverlight 3. There is basic support but the quality is terrible. I need something like bicubic interpolation.

If this is not possible with Silverlight then I need to move to a OneClick client that has a dependency on the .NET Framework. Less desirable but I think it would be acceptable to most of you.
Roger Martin
Creator and Lead Developer of Gallery Server Pro
dkm
#6 Posted : Friday, 7 August 2009 9:30:05 AM(UTC)
Rank: Member

Joined: 29/01/2009(UTC)
Posts: 13
Location: Croatia

You are right, it would be great on clientside to compress and resize files before upload, as I know there are two ways, one is as you say a kind of desktop application(tool) or java applets

maybe you saw this example http://upload.thinfile.com/image/

java applets :-)
gvanerk
#7 Posted : Saturday, 19 September 2009 9:52:52 PM(UTC)
Rank: Newbie

Joined: 18/09/2009(UTC)
Posts: 1

Hi Roger,

Any progress on the "multiple file upload" ? Is there a beta version avaiable yet?

Greetings,

Gilbert
Roger Martin
#8 Posted : Sunday, 20 September 2009 11:32:53 PM(UTC)
Roger Martin

Rank: Administration

Joined: 3/08/2007(UTC)
Posts: 3,300
Location: Fort Atkinson, WI

Sorry, but nothing is available yet, and it is likely to be at least a few months before anything is ready.
Roger Martin
Creator and Lead Developer of Gallery Server Pro
Guest
#9 Posted : Tuesday, 22 September 2009 3:22:48 PM(UTC)
Rank: Guest

Joined: 2/08/2007(UTC)
Posts: 70

So the windows publishing wizard is not an option? If I had the time I could write it with out too much effort. Provides everything requested here and integrates into the explorer shell like peas and carrots. Seems like a better option that writing a kludgey client app when you get in windows for free.
Roger Martin
#10 Posted : Friday, 25 September 2009 11:04:08 AM(UTC)
Roger Martin

Rank: Administration

Joined: 3/08/2007(UTC)
Posts: 3,300
Location: Fort Atkinson, WI

The trouble with that approach is it eliminates a large portion of GSP users. A lot of you are creating galleries that allow visitors and members to upload, and that would be a difficult option for them. Also, it is Windows-specific, and I want to keep this as open as possible.

I still see the best approach being a Silverlight plug-in (or Flash, if I had that skill).
Roger Martin
Creator and Lead Developer of Gallery Server Pro
jwendl
#11 Posted : Tuesday, 29 September 2009 3:32:08 PM(UTC)
Rank: Member

Joined: 8/11/2008(UTC)
Posts: 5
Location: Minnesota

Roger Martin wrote:
The trouble with that approach is it eliminates a large portion of GSP users. A lot of you are creating galleries that allow visitors and members to upload, and that would be a difficult option for them. Also, it is Windows-specific, and I want to keep this as open as possible.

I still see the best approach being a Silverlight plug-in (or Flash, if I had that skill).


What about this http://www.michielpost.n...ight/MultiFileUploader/
http://www.codeplex.com/SLFileUpload/

I don't think it would be that bad. Just need to write a handler that can take the files. Allow it to accept multiple requests and then figure out how to create one synchronization job from that.

Roger Martin
#12 Posted : Wednesday, 30 September 2009 10:33:49 AM(UTC)
Roger Martin

Rank: Administration

Joined: 3/08/2007(UTC)
Posts: 3,300
Location: Fort Atkinson, WI

MultiFileUploader doesn't compress images before upload, which I consider a critical feature.

SLFileUpload was already addressed earlier in this thread.

Still waiting for the perfect uploader...
Roger Martin
Creator and Lead Developer of Gallery Server Pro
jwendl
#13 Posted : Thursday, 1 October 2009 4:24:28 PM(UTC)
Rank: Member

Joined: 8/11/2008(UTC)
Posts: 5
Location: Minnesota

Roger Martin wrote:
MultiFileUploader doesn't compress images before upload, which I consider a critical feature.

SLFileUpload was already addressed earlier in this thread.

Still waiting for the perfect uploader...


So for this feature, are you saying compress the image before transport to the service? I assume that's what you mean. If that's the case, then yes compressing an image before transport would be tough. Flash has a few libraries to do it (although unstable) and since silverlight client code is realistically JScript, there really is not too much we can do until that functionality comes client side.

Now I could see something where you compress the object using GZip or what not to compress the stream then transport to the service where you could use whatever server side compression you like.

Just rambling ideas...
pritam
#4 Posted : Tuesday, 17 November 2009 8:25:56 AM(UTC)
Rank: Newbie

Joined: 17/11/2009(UTC)
Posts: 2
Location: india

dkm wrote:
it might be easier to implement for example http://www.codeplex.com/SLFileUpload/ with silverlight where you can select files like in windows explorer or flash like http://www.codeproject.c...aspnet/FlashUpload.aspx
,no html inpunt restriction of 1 object...




thanx its helpful for me........
ASCDE
#14 Posted : Wednesday, 3 February 2010 4:45:43 AM(UTC)
Rank: Member

Joined: 3/02/2010(UTC)
Posts: 5
Man
Location: Vienna/Leipzig

Hi,
For those which have PHP too running on IIS may take a look on TWG Flashuploader.
http://www.tinywebgaller...en/tfu/web_overview.php
Could be also an example how to start with an own Flashuploader.
As I have an valid license I have linked th TFU as standalone Uploader into my Site.

Someone may ask why I do not use the TWG, very simple I have to move away from PHP and MySQL due to new Standards at our Intranet.
At least GSP is excelent. Some features I miss but am I sure the y will come soon.
I.e. Gallery Inside Template Layout Editor, changing Footer ......

cheers
Alex

mattlok
#15 Posted : Wednesday, 6 October 2010 9:31:05 AM(UTC)
Rank: Newbie

Joined: 6/10/2010(UTC)
Posts: 2
Location: Toronto, Ontario

Hi There,

Is this thread still going?

Just a thought...

Based on this thread i have read that it is possible to allow uploads of multiples wihtout zipping via drag'n'drop function.

I would like to suggest that although Roger has mentioned the most important part of compressing photos on the client-side before uploading to the server.............

is it possible to just have the function be available without the compression on the client-sdie so that those who wish to upload "as is" can do so.

Most people i know have high speed internet so the file size is almost not an issue to upload anymore. I do not know a single person who has dial-up. Even more so i know people who are using their iphones and blackberries to tether high speed internet to upload photos and stuff to their facebook which facebook does the compression on the server level.

However, i am just suggesting to have the function available without compression on both ends. Also most hosting companies are offering 5GB to 10GB or even of data for their hosting solution.

As a wish list, i would really like to see this function add as is without compression.

Just a thought...

Thx

MattLok.
Roger Martin
#16 Posted : Wednesday, 6 October 2010 10:04:00 AM(UTC)
Roger Martin

Rank: Administration

Joined: 3/08/2007(UTC)
Posts: 3,300
Location: Fort Atkinson, WI

This is a top priority for me after releasing 2.4 (due in the next couple months). No matter what I end up doing, you will retain the ability to upload the original file. Pre-compressing before upload will be an option for users, although there may be an administrative switch to force users to compress.
Roger Martin
Creator and Lead Developer of Gallery Server Pro
Rss Feed  Atom Feed
Users browsing this topic
Guest
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.