S swwack91 macrumors 6502a Original poster Dec 18, 2009 #1 How, using HTML, can I make a custom QuickTime movie player like the ones on Apple's website? Those are simple embedded QuickTime movies... but they don't play using the standard silver play-bar player. Thoughts? Thanks!
How, using HTML, can I make a custom QuickTime movie player like the ones on Apple's website? Those are simple embedded QuickTime movies... but they don't play using the standard silver play-bar player. Thoughts? Thanks!
A astroot macrumors regular Dec 18, 2009 #2 HTML5. The long story: http://diveintohtml5.org/video.html The short story: HTML: <video src="/path/to/your/video.mp4" width="320" height="240" controls></video> I've honestly never tried it, but it seems pretty straightforward.
HTML5. The long story: http://diveintohtml5.org/video.html The short story: HTML: <video src="/path/to/your/video.mp4" width="320" height="240" controls></video> I've honestly never tried it, but it seems pretty straightforward.