This week's book giveaway is in the Agile and other Processes forum.
We're giving away four copies of The Mikado Method and have Ola Ellnestam and Daniel Brolund on-line!
See this thread for details.
The moose likes JSP and the fly likes How to create a video virtual tour player on my JSP page. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » JSP
Reply Bookmark "How to create a video virtual tour player on my JSP page." Watch "How to create a video virtual tour player on my JSP page." New topic
Author

How to create a video virtual tour player on my JSP page.

Deb Roberts
Greenhorn

Joined: Sep 03, 2006
Posts: 4
Hi y'all,

I'm trying to create an online video virtual tour where users can view a video of re-modeled rooms. I need the video player to be embedded on my JSP page. But I don't know how to do it or where to start?

Can anyone give me a example to get me started?

Thanks in advance!!!
William Brogden
Author and all-around good cowpoke
Rancher

Joined: Mar 22, 2000
Posts: 12268
    
    1
I would start by trying to create a static HTML page with the video player embedded in it. Don't even think of JSP until you have mastered the HTML markup required.
Bill


Java Resources at www.wbrogden.com
pax smith
Ranch Hand

Joined: Dec 13, 2005
Posts: 45
just insert this code inside your jsp to embedd the quicktime.be carefull to include AC_quicktime.js
object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" width="320" height="306" standby="Data is loading..." codebase="http://www.apple.com/qtactivex/qtplugin.cab" ID="Object1" VIEWASTEXT>
<param name="src" value="testMovie.mov">
<param name="autoplay" value="true">
<param name="controller" value="true">
<param name="type" value="video/quicktime">
<param name="pluginspage" value="http://www.apple.com/quicktime/download/">
<embed src="testMovie.mov" target="quicktimeplayer" width="320" height="316" scale="1" autoplay="true" controller="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/">
</embed>
</object>
Deb Roberts
Greenhorn

Joined: Sep 03, 2006
Posts: 4
Great...thanks!
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: How to create a video virtual tour player on my JSP page.
 
Similar Threads
question about multimedia java
doubt in transfering value using script
Displaying WebCam video in JSP
my jsp code is ugly, how can i clean it?
doubt in transfering a vidoe file