databasing flash movies

Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default Databasing Flash Movies

    Okay, I want to take my flash knowledge up a few notches. I currently have a
    web application written in coldfusion. The end user wants to be able to take
    video and upload it to the server in flash (flv).

    This is not a problem to do manually. I have no problem opening flash 8 and
    importing a video ? creating a skin ? uploading to the server ? copying the
    <object> to my .cfm pages. Works great.

    My question is: how do I store this info in a mysql database so that the flash
    will retrieve the latest video that has been updated. Or the end user can
    choice from any of the videos in the docs/flash folder to view.

    Do I create a database that holds the <object>? Do I create on flash swf that
    can query the database? I really have no idea about the best practice for
    video database storage??

    Help

    Kevin


    kevinkallsen Guest

  2. Similar Questions and Discussions

    1. DISAPPEARING FLASH MOVIES
      I try to browse to a site that has flash content embedded. For a moment you can see the flash movie, then Internet Explorer erases it/makes it...
    2. CFM and Flash movies
      I have seen messages on this forum that have been close to what I would like to ask, but need to ask specifically about creating a Flash movie and...
    3. EMBEDDING FLASH MOVIES INTO FLASH FORMS
      Is there a way? EMBEDDING FLASH MOVIES INTO FLASH FORMS
    4. flash and movies
      I need your help to check this site out http://www.sasakifujika.net you can find and swf header at the top, click and choose 'media \ cool stuff'...
    5. Help finding and databasing similar patterns
      I have several HTML files saved in HTML form in a field called HTMLSTORAGE in a Filemaker database. Each HTML page has several http:// links in...
  3. #2

    Default Re: Databasing Flash Movies

    You store just the filenames of the movies, jpegs, flvs in the database. You
    store the content on the server in their native file formats. Then query the
    database and show a list of the found filename in Flash say in a list or
    combobox component. The let the user select from your UI and then load the
    asset using loadMovie, MovieClipLoader or the FLVPlayback component.

    If there is not much more information other than the name of the file, you
    might want to look at the particular scripting language and simply let it
    return a list of file names.

    But if you have more complex needs such as different folders for each user,
    descriptions of the files and so on, then the database is a good way to go.

    --
    Lon Hosford
    [url]www.lonhosford.com[/url]
    May many happy bits flow your way!
    "kevinkallsen" <webforumsuser@macromedia.com> wrote in message
    news:do6h5g$dg1$1@forums.macromedia.com...
    Okay, I want to take my flash knowledge up a few notches. I currently have
    a
    web application written in coldfusion. The end user wants to be able to
    take
    video and upload it to the server in flash (flv).

    This is not a problem to do manually. I have no problem opening flash 8
    and
    importing a video ? creating a skin ? uploading to the server ? copying the
    <object> to my .cfm pages. Works great.

    My question is: how do I store this info in a mysql database so that the
    flash
    will retrieve the latest video that has been updated. Or the end user can
    choice from any of the videos in the docs/flash folder to view.

    Do I create a database that holds the <object>? Do I create on flash swf
    that
    can query the database? I really have no idea about the best practice for
    video database storage??

    Help

    Kevin


    Motion Maker Guest

  4. #3

    Default databasing flash movies

    This probably is not the standard topic here. But I am looking for some help
    in what is the best technique for databasing my flash moives and then having a
    single skin play the movies from the database. Any suggestions?

    kevinkallsen Guest

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139