How might one link to a QT movie in a webpage and have it pop up a QT player while doing http protocol . I have done it with
RTSP and streaming
like this :: in a webpage
<a href="300_ref.mov" target="_blank"><img src="img/300.png"/></a>
and a reference movie that really is a text file ( 300_ref.mov )
RTSPtextRTSP://208.nnn.nn.nn/300.mp4
this will open the QT Player and you can resize it.
----------------
the only way to deliver via http -- that i have found is to embed it and you are "stuck" with the Hight & width in the tags
So you cannot 'grab' the player and scale it
<embed src="mov/301.mp4" width="320" height="256" autoplay="true" loop="false" controller="true" playeveryframe="false"
bgcolor="#999999" kioskmode="false" targetcache="true" pluginspage="http://www.apple.com/quicktime/"></embed>
what i wish to do is have the QT player just open with my mov in it.
deliver from an apache server http from the same server that has the html
thanks!
RTSP and streaming
like this :: in a webpage
<a href="300_ref.mov" target="_blank"><img src="img/300.png"/></a>
and a reference movie that really is a text file ( 300_ref.mov )
RTSPtextRTSP://208.nnn.nn.nn/300.mp4
this will open the QT Player and you can resize it.
----------------
the only way to deliver via http -- that i have found is to embed it and you are "stuck" with the Hight & width in the tags
So you cannot 'grab' the player and scale it
<embed src="mov/301.mp4" width="320" height="256" autoplay="true" loop="false" controller="true" playeveryframe="false"
bgcolor="#999999" kioskmode="false" targetcache="true" pluginspage="http://www.apple.com/quicktime/"></embed>
what i wish to do is have the QT player just open with my mov in it.
deliver from an apache server http from the same server that has the html
thanks!