Results 1 to 2 of 2

Thread: HTML system to play video in browser

  1. #1
    DavisMartin is offline Senior Member
    Join Date
    Dec 2009
    Posts
    174
    Rep Power
    3

    Default HTML system to play video in browser

    I want html code for my website to play video in browser. I want code for a flash drive that supports the h264. = I use adobe flashplayer than quicktime. If you are having the code to perform the same then let me know about it. Thank in advanced.

  2. #2
    SmithJohnson is offline Senior Member
    Join Date
    Dec 2009
    Posts
    364
    Rep Power
    3

    Default

    Try the given which may solve your problem:

    Code:
    function length (netStream) (
    var netStream_secondes:Number = NetStream.time;
    var minutes:Number = Math. floor (netStream_secondes/60);
    var hours:Number = Math. floor (minutes/60);
    var seconds = Math. floor (netStream_secondes% 60);
    if (seconds <10) (
    seconds = "0"+ seconds;)
    txt.text = hours + ":"+ minutes +":"+ seconds;)

Similar Threads

  1. Zinc Internet Video Browser
    By Elvin Kristen in forum Latest Hardware News
    Replies: 0
    Last Post: 07-03-2009, 08:25 AM
  2. My system is not able to play high end games
    By Michael Vaughan in forum Everything Else
    Replies: 1
    Last Post: 06-04-2009, 08:11 AM
  3. Youtube Video taking long time to Play
    By arsenal in forum General Internet Terms
    Replies: 0
    Last Post: 01-14-2009, 08:21 AM
  4. Play H.264 video on TI SoC
    By andrea55 in forum Technologies
    Replies: 0
    Last Post: 12-18-2008, 06:00 AM
  5. Play any video
    By dinsion in forum General Internet Terms
    Replies: 0
    Last Post: 10-24-2008, 09:57 AM

Bookmarks

Posting Permissions

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

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