A Flash Developer Resource Site

Results 1 to 9 of 9

Thread: how to handle large video size

  1. #1
    Member for Life
    Join Date
    Apr 2003
    Posts
    344

    how to handle large video size

    Hello...I am new to this, video and flash. I am making a site that the client wants to be able to view videos they supplied me in Windows Media format.

    The files are large...like 12mb each. Do I need to somehow reduce the file size???

    Also..I want to have a thumbnail that when pressed will open the movie in its own window. Is that the best way to do this?

  2. #2
    Karma police phreakdevil's Avatar
    Join Date
    Jun 2002
    Location
    B4rc3L0c4
    Posts
    764

    Re: how to handle large video size

    Originally posted by boney317
    The files are large...like 12mb each. Do I need to somehow reduce the file size???
    Well if it is for a site, even though its not that big, for a video i mean, video sizes are usually large, yes i would reccomend to reduce the size, downloading 12 meg can be a pain in the @**, and it will need more work on the users computer.

    [/B][/QUOTE] Also..I want to have a thumbnail that when pressed will open the movie in its own window. Is that the best way to do this? [/B][/QUOTE]

    I guess that depends on your concept/idea for the site, that sounds ok, its doable, i guess how u present them its up to u.

    Hope that helps.
    Ask away if u think i left something out.

  3. #3
    Member for Life
    Join Date
    Apr 2003
    Posts
    344
    Thanks for the response....I am just so new to trying to access video from a website, everything seems a little foriegn. If the video that i want to have a link to is a window media file, can I just have the link open it in a new window and will it just stream in the users window media player?

    I am sorry if this sounds basic, I am just learning about adding or accessing video from the website.

  4. #4
    Karma police phreakdevil's Avatar
    Join Date
    Jun 2002
    Location
    B4rc3L0c4
    Posts
    764
    R u using flash to deliver?

  5. #5
    Member for Life
    Join Date
    Apr 2003
    Posts
    344
    I am using flash for the website...I would like the movie to open in its own window....just not quite sure how to go about it. I would like it to open in its own window with the media player playing the movie....I guess I don't need a full size window.

    Any suggestions?

  6. #6
    Karma police phreakdevil's Avatar
    Join Date
    Jun 2002
    Location
    B4rc3L0c4
    Posts
    764
    If u want the windows media player to stream you file u will have to create a windows media metafile, theres nothing to it really just a text file that act as a link to your windows video on a web server, and direct that content to the windows media player.
    That souns bigger then what it is, open your text editor (notepad works) and type:
    ASX version="3.0">
    <Entry>
    <ref HREF="http://yourdirection/path/videoname.wmv"/>
    </Entry>
    </ASX>
    Save it as a .wvx

    Now on that beautyfull flash botton type:

    on (release) {
    getURL("http://yourdirection/path/1.wvx", "_blank");
    }

    Thats it.

    Here i made an example, set it to stream for adsl users, (225 kbps) dunno what your target is.

    Hope that helps.

  7. #7
    Karma police phreakdevil's Avatar
    Join Date
    Jun 2002
    Location
    B4rc3L0c4
    Posts
    764
    The wvx code that u cant see on the post.
    Attached Files Attached Files
    • File Type: txt 1.txt (114 Bytes, 22 views)

  8. #8
    Member for Life
    Join Date
    Apr 2003
    Posts
    344
    what is the difference between that and setting it up like this....

    have a html page for each movie and have the button call each html page to open in its own window, having the page set at the exact size of the movie in the html page...so there is no border.....does that make sense?

    It will play the movie in its own window...right?

  9. #9
    Karma police phreakdevil's Avatar
    Join Date
    Jun 2002
    Location
    B4rc3L0c4
    Posts
    764
    Here thats a link to microsoft SDK, thats where i check whenever i have a doubt, dont have the time to explain it right now, so check it.
    I thought u wanted to open the file on the player, anyways, embedding it is easy, check the link, im sure theres the answer.

Posting Permissions

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




Click Here to Expand Forum to Full Width

HTML5 Development Center