Skip to main content
Inspiring
March 27, 2008
Question

Embedding Quicktime Movies in a webpage

  • March 27, 2008
  • 5 replies
  • 567 views
Hi,

I have a lot of quicktime movies stored on a server.

I'd like to create a page on the fly somehow, so the movie is embedded in the webpage.

Is there something similar to Verity that can do this?

Can anyone think how I could go about this?

Basically I want to setup my own youtube site.

Thanks in advance
    This topic has been closed for replies.

    5 replies

    Participating Frequently
    March 28, 2008
    Let us assume that you have a table with name and URL fields in order to store your media file information.

    You can get your query via CF from database and make an output and generate your dynamic HTML page.

    Such as

    <cfoutput query="myMediaQuery">
    <img src="#url#" alt="#name#" />
    <br />
    #name#
    <br />
    <br />
    </cfoutput>

    This is a simple example for image output. You just need to use this kind of output for your media file.

    I hope it is clear.


    Participating Frequently
    March 28, 2008
    You just need to save in the database the reference link for the movie files and use them to populate your dynamic generated pages.

    This is probably in general data output in CF. I would first suggest to create a basic structure to generate dynamic image list tool then use same approach for your movie files.
    MattasticAuthor
    Inspiring
    March 28, 2008
    Thanks for the reply.

    Can you please explain a little more?

    How would I save my reference link in my Db, the movies are uploaded on the fly, by software on the mac server.

    What do you mean by dynamic image list tool?

    Thankyou
    MattasticAuthor
    Inspiring
    March 28, 2008
    Thanks for your replies.

    Its using a Mac streaming server and embedding quicktime into a webpage is the best way I've been told. I'd like to stick with quicktime anyway.

    I can create the html page template ok. The problem is I need to store tag information, movie title, clip size etc. As QT movies are being uploaded stright to the Mac server, I cannot think of a way to link the movie to the data.

    Can anyone help?

    Thankyou



    Participating Frequently
    March 27, 2008
    By the way, I would suggest to check out the FLV file format for these kind of approaches.

    :)
    Participating Frequently
    March 27, 2008
    If you know how you can embed a single QT movie into a webpage the rest is just creating basic output pages from your DB.

    http://www.apple.com/quicktime/tutorials/embed.html

    While looping with your resultset, instead of the file names, you will put your CF parameters which refers your movie location and names.