wwp@yahoogroups.com:
Re: Pano2QTVR ruins the sharpness, PanoCube does not create large window
Andrew 2006-Dec-26 08:21:00
--- In #removed#, "Mahmood Hamidi" <mahmood_hamidi@...> wrote:
> 1600 pixels width is more than what I need but I was using the free
> version and there the width limit is 800 pixels.
Oh yes, it was written in Coolpix era when 800 pixels wide window was
more than enough ;-)
Anyway you could stretch a movie to any size with javascript for the
WEB and with SMIL for the QuickTime player. Below is a simple SMIL
wrapper - just copy, paste, edit and save with extension .smil and
then open this file instead of movie in the player:
----------------------------------- cut
----------------------------------------
<smil>
<head>
<layout>
<root-layout id="main" width="1024" height="768"
background-color="#000000" />
<region id="movie" width="100%" height="100%" fit="fill" />
</layout>
</head>
<body>
<video src="your-movie-here.mov" region="movie" />
</body>
</smil>
----------------------------------- cut
----------------------------------------
=Andrew Jakowleff