hello, all,
i used QuickTime 7.4.1 to convert a large .mov file into web movies for desktop (medium-sized .m4v), iphone on wifi (small-sized .m4v), and iphone on cellular (.3gp). i pasted in their auto-generated code to embed the movies in my web page, but Safari on the iPhone won't play them. here's the url to the web page:
http://technekai.com/shadow/balcony.html
and the direct link to the file, which plays just fine on a desktop browser:
http://technekai.com/shadow/media/FromTheBalcony-iPhone-cell.3gp
what's going on? is the Apple code bad?
this is the code i used in the body of my web page:
<script type="text/javascript"><!--
QT_WritePoster_XHTML('Click to Play', 'images/FromTheBalcony-poster.jpg',
'media/FromTheBalcony.mov',
'320', '256', '',
'controller', 'true',
'autoplay', 'true',
'bgcolor', 'black',
'scale', 'aspect');
//-->
</script>
<noscript>
<object width="320" height="256" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="images/FromTheBalcony-poster.jpg" />
<param name="href" value="media/FromTheBalcony.mov" />
<param name="target" value="myself" />
<param name="controller" value="false" />
<param name="autoplay" value="false" />
<param name="scale" value="aspect" />
<embed width="320" height="256" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"
src="images/FromTheBalcony-poster.jpg"
href="media/FromTheBalcony.mov"
target="myself"
controller="false"
autoplay="false"
scale="aspect"> </embed>
</object>
</noscript>
and in the header i have:
<script src="http://www.apple.com/library/quicktime/scripts/ac_quicktime.js" language="JavaScript" type="text/javascript"></script>
<script src="http://www.apple.com/library/quicktime/scripts/qtp_library.js" language="JavaScript" type="text/javascript"></script>
<link href="http://www.apple.com/library/quicktime/stylesheets/qtp_library.css" rel="StyleSheet" type="text/css" />
anyone have a simpler solution?
thank you,
aya.
i used QuickTime 7.4.1 to convert a large .mov file into web movies for desktop (medium-sized .m4v), iphone on wifi (small-sized .m4v), and iphone on cellular (.3gp). i pasted in their auto-generated code to embed the movies in my web page, but Safari on the iPhone won't play them. here's the url to the web page:
http://technekai.com/shadow/balcony.html
and the direct link to the file, which plays just fine on a desktop browser:
http://technekai.com/shadow/media/FromTheBalcony-iPhone-cell.3gp
what's going on? is the Apple code bad?
this is the code i used in the body of my web page:
<script type="text/javascript"><!--
QT_WritePoster_XHTML('Click to Play', 'images/FromTheBalcony-poster.jpg',
'media/FromTheBalcony.mov',
'320', '256', '',
'controller', 'true',
'autoplay', 'true',
'bgcolor', 'black',
'scale', 'aspect');
//-->
</script>
<noscript>
<object width="320" height="256" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab">
<param name="src" value="images/FromTheBalcony-poster.jpg" />
<param name="href" value="media/FromTheBalcony.mov" />
<param name="target" value="myself" />
<param name="controller" value="false" />
<param name="autoplay" value="false" />
<param name="scale" value="aspect" />
<embed width="320" height="256" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"
src="images/FromTheBalcony-poster.jpg"
href="media/FromTheBalcony.mov"
target="myself"
controller="false"
autoplay="false"
scale="aspect"> </embed>
</object>
</noscript>
and in the header i have:
<script src="http://www.apple.com/library/quicktime/scripts/ac_quicktime.js" language="JavaScript" type="text/javascript"></script>
<script src="http://www.apple.com/library/quicktime/scripts/qtp_library.js" language="JavaScript" type="text/javascript"></script>
<link href="http://www.apple.com/library/quicktime/stylesheets/qtp_library.css" rel="StyleSheet" type="text/css" />
anyone have a simpler solution?
thank you,
aya.