I'd like the option to have a PLAY button on a thumbnail when I use
VPIP/Video Wrangler.
this makes it more obvious that I should click to watch.
For instance on Milt's showcase page, its not at all clear which
thumbnail is a video and which is just a thumbnail.
http://showinabox.tv/2008/03/15/hollow-bone-films/
Jay
So here's even another request - how about a skin-able player? This
is the thing that I used to love about Lo-Fi St. Louis - the look of
the TV set - it made it really clear that this is a film/video/tv
something that you should watch.
Actually even as I think about this - I'm coming up with a new design
for Hollow Bone. hmmmmm - very exciting.
Milt
Cell - (605) 381 4842
Office - (605) 341 4232
http://hollowbonefilms.com
http://manykites.com
http://oyate.com
http://jamielee.manykites.org
Can we build it into Video Wrangler so its just a check box?
"want to add a Play Button to your thumbnail?"
or better,
"upload the PNG you want to use to represent te play button on your thumbnail."
Can I put this on the roadmap?
jay
Normally a visitor to my site would cache the various poster images
(hosted) a blip and they'd load up really fast the next time they
stopped by.
But with this sort of modification, the php page itself loads all the
images from blip (or wherever) each and every time (so that it can
then do some magic to add a play button). Vistors might cache the
newly modified image but it wouldn't matter - the php filter would go
grab a new copy to modify on each page reload.
If such a plug-in is developed, I would recommend writing in a local
cache function or something in order to address this.
- Dave
See ya
--
Charles Iliya Krempeaux, B.Sc.
http://ChangeLog.ca/
Motorsport Videos
http://TireBiterZ.com/
Vlog Razor... Vlogging News... http://vlograzor.com/
just wondering.
why would that one image slow down the page since it's already loading
all kinds of images from your server?
is there something specific to a Play Button?
David:
I think I know what you problem was.
You need to send out the proper HTTP headers to get caching to happen
(and to avoid the slow down) with your PHP modified images.
Like, "Last-Modified" and "Etag". That way the browser will do a
conditional GET.
Also... you need to add code to handle the conditional GET.
These conditional GETs... or the lack of them... is what often makes
PHP generated things seem slow. Add them and you site is as snappy as
a site based on static files.
The browser (client) was caching everything just fine like it should
... but that didnt matter because the php page on the server was
(before it ever getting to the client) redownloading every image from
blip in order to add a play button (regardless as to if the client
browser would have or now).
so while all that image downloading normally happens on the client
browser - where caching can take place - I'd forced it to happen on
the server before the page was even offered to the client bowser.
Does that make sense? (This is at least how I came to understand the slow down).
- Dave
Adam - do you know about this? Have you ever written anything about it?
thanks everybody,
Milt
> You need to send out the proper HTTP headers to get caching to happen
> (and to avoid the slow down) with your PHP modified images.
>
> Like, "Last-Modified" and "Etag". That way the browser will do a
> conditional GET.
>
> Also... you need to add code to handle the conditional GET.
>
> These conditional GETs... or the lack of them... is what often makes
> PHP generated things seem slow. Add them and you site is as snappy as
> a site based on static files.
>
>
>
> See ya
>
> --
> Charles Iliya Krempeaux, B.Sc.
> http://ChangeLog.ca/
>
> Motorsport Videos
> http://TireBiterZ.com/
>
> Vlog Razor... Vlogging News... http://vlograzor.com/
>
>
>
> >
>
--
To get around that, you could cache those images (on the Blip.tv
servers) on your server.
And check to see if they've been updated (on the Blip.tv servers)
every now and then. (Using conditional GETs).
That would fix the problem.
So... you should use conditional GETs in 2 places. When you download
images from the Blip.tv servers (to cache them on yours). And when
you server the "tweaked" image to the users.
--
Charles Iliya Krempeaux, B.Sc.
http://ChangeLog.ca/
Motorsport Videos
http://TireBiterZ.com/
Vlog Razor... Vlogging News... http://vlograzor.com/
Yes, the idea of a conditional GET is to make your website load
faster. It does this by letting web browsers and web proxies cache
stuff.
But... I'm not sure if it would be useful to you to teach it to you.
You'd have to start coding in PHP (or something like that) if you
wanted to make use of that knowledge. But with WordPress (which is
coded in PHP), making use of conditional GETs can be "challenging".
One of the "challenges" with WordPress is that it isn't geared to use
conditional GET "properly" most of the time. It's not really geared
towards caching at all.
IMO, the whole plugin architecture, for WordPress, needs to be
redesigned with caching in mind.
Having said that... I'm using it where I can. But we could do alot
better (if WordPress was architectured differently.).
--
Charles Iliya Krempeaux, B.Sc.
http://ChangeLog.ca/
Motorsport Videos
http://TireBiterZ.com/
Vlog Razor... Vlogging News... http://vlograzor.com/
Yeah exactly. You'd want some sort of blog-server-local cache feature
written in to the image manipulation plug-in. That's what I did with
my episode archive (caches thumbnails on my server based off of poster
images at blip - and only grabs originals (at blip) if a local cached
version doesn't already exist)... I just never went back and added
such checks to the image manipulation thingy I'd made once upon a
time.
- Dave
Thanks again,
Milt
--
(I.e., software could take care of resizing images to the proper sizes
for thumbnails.)
--
Charles Iliya Krempeaux, B.Sc.
http://ChangeLog.ca/
Motorsport Videos
http://TireBiterZ.com/
Vlog Razor... Vlogging News... http://vlograzor.com/