Deperate Need for Help - Streaming Movie

Good Day,
I recently purchased the full version of Quicktime to create streaming movies from an http website. I have been fighting with it for a week trying hinted streaming, Fast track...etc etc. I cannot seem to get this to work. I am uploading the video to a website and it insists on downloading the entire movie before displaying it. I have had many people try and get the same result. I assume it isn't a problem to upload to an http://www.whatever.com/movies/movie.mov and have it stream. Does anyone know how i could get this to work properly?
thank you

Export to .mov and check the box for Fast Start. No need to add hint tracks because your files are not served from streaming server software. They download via http.
I'll bet (since you didn't provide a link) that your page code is wrong. I'll bet you're directly linking to your .mov files instead of using the proper page code to call the QuickTime plug-in and turn on ActiveX controls in Internet Explorer.
http://docs.info.apple.com/article.html?artnum=61011
This link explains the object and embed tags and how to write the html code when using QT content in a Web site.
http://developer.apple.com/internet/ieembedprep.html
This article explain the new changes (just this week) regarding object and embed tags.

Similar Messages

  • Hi! I'm new to mac so I need for help.Why when I open safari also open some pages that I don't click?

    Hi! I'm new to mac so I need for help . Why when I open safari also open some pages that I don't click? What should I do ,get any cleaner ?

    Please review the options below to determine which method is best to remove the Adware installed on your computer.
    The Easy, safe, effective method:
    http://www.adwaremedic.com/index.php
    If you are comfortable doing manual file removals use the somewhat more difficult method:
    http://support.apple.com/en-us/HT203987
    Also read the articles below to be more prepared for the next time there is an issue on your computer.
    https://discussions.apple.com/docs/DOC-7471
    https://discussions.apple.com/docs/DOC-8071
    http://www.thesafemac.com/tech-support-scam-pop-ups/

  • IN DESPERATE NEED FOR HELP flashing question mark appears MacBook

    Hello everyone, I got this White MacBook Mac OS X 10.4.11 yesturday I was updating limewire and iTunes, I was downloading some songs from Limewire when all of a sudden my macbook frozed. I was not able to do a thing. Not even minimizing nor quiting the app nor even opening another aplication, so I decided to shut it down by holding the power button until it shut down (about 8 secs). So I restart my macbook and I got this grey=blank screen whit a flashing question mark on it. I've tried EVERYTHING on this link http://support.apple.com/kb/TS1440?viewlocale=en_US even these one http://support.apple.com/kb/HT1533 and all I was able to accomplish, was to hold the mouse (/trackpad) button to eject a Cd, and while pressing Shift during startup (in order to start in Safe Boot mode) all I get is this lock image and this space to type a password. I've tried typing every password I know and I can't fix my macbook. Can anyone please help me out on this one?

    It means certain system files needed for startup are corrupted. You will have to reinstall OS X. If your hard drive is unaffected you can try the following:
    How to Perform an Archive and Install
    An Archive and Install will NOT erase your hard drive, but you must have sufficient free space for a second OS X installation which could be from 3-9 GBs depending upon the version of OS X and selected installation options. The free space requirement is over and above normal free space requirements which should be at least 6-10 GBs. Read all the linked references carefully before proceeding.
    1. Be sure to use Disk Utility first to repair the disk before performing the Archive and Install.
    Repairing the Hard Drive and Permissions
    Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When the menu bar appears select Disk Utility from the Installer menu (Utilities menu for Tiger.) After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list. In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive. If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported, then quit DU and return to the installer.
    If DU reports errors it cannot fix, then you will need Disk Warrior (4.0 for Tiger) and/or TechTool Pro (4.5.2 for Tiger) to repair the drive. If you don't have either of them or if neither of them can fix the drive, then you will need to reformat the drive and reinstall OS X.
    2. Do not proceed with an Archive and Install if DU reports errors it cannot fix. In that case use Disk Warrior and/or TechTool Pro to repair the hard drive. If neither can repair the drive, then you will have to erase the drive and reinstall from scratch.
    3. Boot from your OS X Installer disc. After the installer loads select your language and click on the Continue button. When you reach the screen to select a destination drive click once on the destination drive then click on the Option button. Select the Archive and Install option. You have an option to preserve users and network preferences. Only select this option if you are sure you have no corrupted files in your user accounts. Otherwise leave this option unchecked. Click on the OK button and continue with the OS X Installation.
    4. Upon completion of the Archive and Install you will have a Previous System Folder in the root directory. You should retain the PSF until you are sure you do not need to manually transfer any items from the PSF to your newly installed system.
    5. After moving any items you want to keep from the PSF you should delete it. You can back it up if you prefer, but you must delete it from the hard drive.
    6. You can now download a Combo Updater directly from Apple's download site to update your new system to the desired version as well as install any security or other updates. You can also do this using Software Update.

  • Looking for help with movie loading in a different spot every time page reloads.

    Hello,
    I have a Flash movie that I need to jump to a one of 6 chosen frames when say a user hits the back button or home in the site. I just dont want the same user seeing the flash movie replay in the same spot everytime they go back to home.
    ANY help with this is appreciated.
    Thanks ahead of time.
    -Ann
    Here is what I have scripted:
    var numbers:Array = [2,114,415,687,960,1195,1485];
    _root.firstTime = true;
    if(firstTime) {
        firstTime = false;
        var frame:Number = Math.floor(Math.random() * numbers.Length);
        gotoAndPlay(numbers[frame]);
    I have also tried this:
    Array.prototype.shuffle = function() {
    for (var ivar = this.length-1; ivar>=0; ivar--) {
    var p = random(ivar+1);
    var t = this[ivar];
    this[ivar] = this[p];
    this[p] = t;
    ASSetPropFlags(Array.prototype, ["shuffle"], 1, 1);
    var Array_ar:Array = new Array(2,114,415,687,960,1195,1485);
    Array_ar.shuffle();
    index = 0;
    function load_random() {
    gotoAndPlay(Array_ar[index++]);
    if (index == Array_ar.length) {
    (index=0);
    load_random();
    But this keep jumping to frame 1 each time i hit back or refresh.
    Thanks again.

    That did not work. It loops back to the frame that it first loaded to not to frame 1 the beginning.
    It tried putting gotoAndPlay(numbers[frame]); on the very last frame, then I made a new keyframe after the very last frame and neither worked.
    You can see the swf here:
    http://www.shared-vision.net/testsites/edi/EDIflashtest2.html
    Thank you for your help.
    -Ann

  • Urgent Need of Help Playing Movie Clips

    I'm a complete noob when it comes to AS. I know basic things like stop(); and gotoAndPlay.
    Here's my dilemma.
    Dearest Professor has given us a task of creating a website in Flash. You need to have 15 links, or 15 pages. He states that you can only go frame by frame on the main timeline with no tweening spaces in between. So I'm virtually creating all of my animations in symbols.
    This isnt such a problem... I created a short introduction title video in Flash using a Movie Clip Symbol... placed it on the main timeline on the first page, and then called ActionScript to play the video.
    Here's the problem... So.... the movie will play, but it will continuously loop... I've tried putting stop(); on the home page, under the AS... I'm just completely lost on how to get this to play the short clip and go straight to the home page... Could someone PLEASE, direct me on how to do this and give me an explanation as to why this way is the way it is... I would very much like to understand how it works.
    Thanks
    The Flash Noob

    Thanks Rob!
    I did what you suggested but I think I may have messed it up...
    Here's the output error I have going on right now.
    TypeError: Error #1034: Type Coercion failed: cannot convert flash_website_template2_fla::MainTimeline@7fff0d7aea1 to openingtodogwood.
      at openingtodogwood/frame9()[openingtodogwood::frame9:3]
    In the end of the timeline of the movie clip I put this:
    stop();
    openingtodogwood(parent).play();
    I think that might be wrong but I'm unsure on what I should have really put. I was also reading that having the name of the movie clip the same as the class in the properties panels is not a good idea?
    Thank you so much for your help!

  • Need for helps in Business Warehouse

    Hihi,
    I would like to request for experts out there to help me up on this problem:
    Step 1 : From Business Warehouse, i tried to pull the records (infopackage) from ECC with the tariff code "abc123" -> failed
    Step 2: I tried again by set the conditions to pull  the records with tariff "abc123" and date : before april -> it is work!!
    As per above description, it proved that the failure in data pulling is not because of the tariff code, does you all have any solution for me on this? I need this urgently.
    [I confirmed the data for APRIL, MAY have no problem and in ECC (RSO2) - the function module do pick up those records (which didnt show up in BW site)].
    Hope can hear from you all soon.
    Edited by: MOPZ Narayanan on May 18, 2010 10:06 AM

    Hello,
    Are you getting any ST22 dumps while loading data? Please check ST22.
    You may try to load data by reducing the data packet size. Go to(Infopackage) Scheduler -> Data Source. Default Data Transfer and reduce the packet size there. Also try loading it till PSA only and then load above.
    It would be difficult to analyze why there is error for only 1 record but most probably it would be the packet size, so try reducing it.
    Also go through the below forum discussions to further drill-down into the issue details:
    [Caller 70 is missing]
    [Caller 70 is missing]
    [Re: Error Caller 70" is missing when loading delta to DSO]
    Hope it helps..  All the best.
    Regards,
    Pratap Sone

  • Urgent need for help

    Hi folks,
    I really need help to solve an urgent issue.
    The context
    We are about to deliver an e-learning course made essentially
    with captivate lessons.
    The content is accessed through an html Main Menu which in
    turn is nested in a frameset.
    The reason for that is that in the second half of the
    frameset resides the SCO script since the content will be
    ultimately accessed from an LMS.
    The problem
    To exit the captivate content at the end of a lesson and go
    back to the main menu, we insert a button in the last slide where
    we indicate the main menu dynamic file location in case of success.
    All links are working fine during execution except when the
    main menu is called from the frameset.
    It looks like if captivate simulations don’t know what
    to do when they are launched from a frameset.
    I tried to go around it using JavaScript in the button, but
    that also won’t work.
    Any help would be greatly appreciated.
    Thanks in advance
    Mike

    I'm unclear on the issue.
    This is an HTML page your group has made? The Main Menu is
    nested in a
    frameset? Or, as I would think makes more sense, the Main
    Menu us *part*
    of the frameset, with the other frame being what loads the
    Captivate
    content?
    So you want to bundle a bunch of Captivate SWFs into one HTML
    frameset...
    And when you load the Captivate file, since the Captivate's
    HTML file -
    that contains the code to communicate with the LMS API - is
    in a
    frameset, it can't find the LMS?
    Or is it a different issue?
    Why would you call the Main Menu from the Captivate file?
    Erik
    MichelGervais wrote:
    > Hi folks,
    >
    > I really need help to solve an urgent issue.
    >
    >
    > The context
    >
    >
    > We are about to deliver an e-learning course made
    essentially with captivate
    > lessons.
    >
    > The content is accessed through an html Main Menu which
    in turn is nested in a
    > frameset.
    >
    > The reason for that is that in the second half of the
    frameset resides the SCO
    > script since the content will be ultimately accessed
    from an LMS.
    >
    > The problem
    >
    > To exit the captivate content at the end of a lesson and
    go back to the main
    > menu, we insert a button in the last slide where we
    indicate the main menu
    > dynamic file location in case of success.
    >
    > All links are working fine during execution except when
    the main menu is
    > called from the frameset.
    >
    > It looks like if captivate simulations don?t know what
    to do when they are
    > launched from a frameset.
    >
    > I tried to go around it using JavaScript in the button,
    but that also won?t
    > work.
    >
    > Any help would be greatly appreciated.
    >
    > Thanks in advance
    >
    > Mike
    >
    >
    >
    >
    Erik Lord
    http://www.capemedia.net
    Adobe Community Expert - Authorware
    http://www.adobe.com/communities/experts/
    http://www.awaretips.net -
    samples, tips, products, faqs, and links!
    *Search the A'ware newsgroup archives*
    http://groups.google.com/group/macromedia.authorware

  • Are all these files needed for MBR streaming? event.xml,manifest.xml,event1.f4m,event1.m3u8?

    When streaming live multiple bit rate events, are all four of these xml files necessary and in the correct location? Seems like duplicate information.
    Say my event is called 'liveshow'
    Event Directrory (2 files) > C:\FMSHOME\applications\livepkgr\events\_definst_\liveshow.
    Event.xml
    <Event>
      <EventID>liveshow</EventID>
      <Recording>
        <FragmentDuration>4000</FragmentDuration>
        <SegmentDuration>400000</SegmentDuration>
        <DiskManagementDuration>3</DiskManagementDuration>
      </Recording>
    </Event>
    Manifest.xml
    <manifest xmlns="http://ns.adobe.com/f4m/1.0">
      <media streamId="stream1" bitrate="200" />
      <media streamId="stream2" bitrate="350" />
      <media streamId="stream3" bitrate="500" />
    </manifest>
    In the webroot (2 files)
    liveshow.f4m
    <manifest xmlns="http://ns.adobe.com/f4m/2.0">
      <baseURL>http://FMS/hds-live/livepkgr/_definst_/liveshow/</baseURL>
      <media href="stream1.f4m" bitrate="200"/>
      <media href="stream2.f4m" bitrate="350"/>
      <media href="stream3.f4m" bitrate="500"/>
    </manifest>
    liveshow.m3u8
    #EXTM3U
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=200000
    http://FMS/hls-live/livepkgr/_definst_/liveshow/stream1.m3u8
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=350000
    http://FMS/hls-live/livepkgr/_definst_/liveshow/stream2.m3u8
    #EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=500000
    http://FMS/hls-live/livepkgr/_definst_/liveshow/stream3.m3u8
    Also why does 'Manifest.xml use '<manifest xmlns="http://ns.adobe.com/f4m/1.0">' and 'liveshow.f4m' use '<manifest xmlns="http://ns.adobe.com/f4m/2.0">' ?
    Thanks for all the help!

    Event.xml is used for Recording purpose - the configuration in there is used for F4F recording.
    Manifest.xml is used to serve .f4m file in case if you are using Multi-level manifest.
    liveshow.f4m is new way of delivering f4m and is called Multi-level manifest and is used for HDS
    liveshow.m3u8 is used for HLS
    The difference between Manifest.xml and liveshow.f4m is that they use different specification of F4M file specification - first one is based on 1.0 specification and later is on 2.0 specification.

  • I need some help to move volume button in flash file.

    Hello,
    If anyone can help with this 2 issues I’ll be very glad.
    I have this swf file to which I need to move the volume button to another place because my flash will be smaller and the button its not visible there. I have a picture attached with correct position. Actually I haver managed to move it myself using Adobe Flash Pro, but as I export the fla file to swf it results a mess. I have tried also with Sothskin Quicker with same results.
       2.  I need the main pictures to have direct links to my prefferance i.e. www.mysite.com/forum. I don’t know where to enter it.
    I attached the 1Mb rar file with swf , xml and correct position. http://www.fileswap.com/dl/hihoGYdQZx/
    Thank you

    Try downloading the installer(s) from the links in http://forums.adobe.com/thread/889580

  • In Desperate need for help with Security Settings

    I am currrently working on a project that requires a Flash
    submenu running through an HTML Browser window and running from a
    CD. The problem is that the final destination for these CDs will be
    on computers without the capability to connect to the internet. So,
    when the user gets the popup requiring them to change the security
    setting in order to use the flash element, which is through the
    internet (the dumbest way of doing this) they have no choice but to
    decline the popup and therfore cannot use the flash submenu.
    Is there a way to automatically be trusted whitiout the use
    of the internet "security settings" window???????? If anyone from
    Adobe/Macromedia read this please be advise that this should really
    change to be computer based and not requiring an internet
    connection.
    If this is esay enough to change, I regret everything that I
    am thinking of about Adobe/Macromedia at the time I writing this.
    and please acceot my apologies.
    If not, well.....
    Thanks for anyones help.

    When Exporting, you get the option of setting the Local
    Playback security (very bottom of the Export dialogue box). Have
    you checked to make sure you have yours set to "Access local files
    only"?
    What is the submeu trying to access that would cause the
    sandbox warning?

  • In desperate need for help on Gingerbread upgrade

    I have an unrooted D2 Global and tried to upgrade to 2.3 yesterday. I did download this stupid update but it just wouldn't install. The install bar would stop at 20-30% and then reboot, and then tell me the upgrade fail. I downloaded the patch for over 6 times already. I tried clearing the cache and everything else. I didn't try SBF as I don't think that's necessary yet.
    Could anyone help me solve this problem?Thanks a lot!
    I am thinking about going back to iPhone after this one. My experience with Android has compelled me to stay away from this danger software.

    JCJCJCJ wrote:
    Thanks any ways.
    This seems a risky buisness.
    Never did I know upgrading a phone or remove an preloaded garbage on a phone I paid $$ for would be so hard.
    Perhaps, I can just SBF the phone to 2.4.330 and then see if that flush all the wrong files out. 
    You just answered your question, you rooted and removed bloatware and now your device isn't stock and this is why the update will not load, it detects that you changed your device and wont install..
    By the way you do know that the method you used to remove the apps voids warranty and breaches Verizon TOS....
    The method to resolve this should be located at the location you received the unauthorized software, no disrespect but it may be wise to research what you are doing to your device before modifying it in this method because you can not get support on the Service Providers site when they do not support the method.
    Just something to consider...  Google is your best solution...

  • Need for help

    can any body help me. I hv taken business area GSBER in my report.
    when I run my report it come and showing like 1101.but when we filter it and select any one then it shows 1101######.while it should come 1101. I hv taken GSBER TYPE BSIS-GSBER. eventhen it is comming 1101######. pls help to fix this problem.

    hi  you can follow one of these 2 methods for this,
    1.     v_gsber = itab-gsber+0(4).
            then it_final-gsber = v_gsber.
    2.
        data:char(9) value '5#4#2#1#1',
         char1(16) value '56748##########'.
         replace all occurrences of '#' in char with space .
         replace all occurrences of '#' in char1 with space .
         write: char,char1.
    regards,
    venkat.

  • Need quick help on .mov to "DVD ready"

    hi,
    i have a .mov file that i was using in DVDSP. i thought it might be better to go ahead and run it through compressor first.
    my source fill has video and audio --how do i get a final file that is separated into two files?
    it seems to me i'd have to sync them up again!
    so what is the proper route here, besides doing using compressor earlier or not at all.
    Or, am I missing something all together?
    Thanks so much,
    Ted

    i meant to ask... i ran my .mov through compressor. this is my main movie (feature) dvd content. now i have separate vid and audio files.
    and not only for use in DVDSP but for iDVD.
    i do not want that. is there a choice?
    "books" are difficult sometimes and time consuming. the internetz can be SO much faster.
    meantime, i can do other things, or mb read a book.

  • Disable need for password to move files

    My mac mini running 10.5.8 requires a password to login. Once logged in I am required to enter my password everytime I want to move a file. Is there a way to disable this requirement while still requiring a password to login? If so, how?
    Thanks

    It's everything in my home folder. I already have both read and write permission on the whole user account. Iselected my home folder, then selected get info. I see my short name, followed by (me). Under privilages it says read and write. For example, if I have a folder on my desktop and want to move it into my documents folder I am required to enter my password to authenticate. I have both read and write permissions on both folders already. What am I missing?

  • In desperate need for help - Lag spikes through a wired connection

    Hello. I've recently started experiencing random lag spikes. I have no idea what the cause of these could be. I've used this router for almost 2 yrs now and never ran into a problem. I've done extensive searches and updated my old firmware to the new one following the strict intructions. I've also been trying to figure out how to log my network to provide more information on my situation. I've downloaded kiwisyslogd but have no idea how to use it... Any help with that would also be greatly appreciated.
    -Tesm
    EXTRA INFO - I called my isp (cox) and they told me everything on their line is fine. I'm running on a 15mb line. Internet connection works and everything else is fine except for periodic lag spikes that really interupt my gaming and web browsing severly.
    router: wrt54g v2
    Firmware: DD-WRT v23 SP2 (09/15/06) std then reverted back to linksys latest firmware... still no solution.
    Tried isolating the router out of the equation. Connected pc directly to the modem and had no problems. Connected the router back in and lag spikes came back. Pc is connected through ethernet wire.
    Tried disabling windows wireless zero service - no help
    Pinging a game server i tested the lag at. No problems when I pinged the server with the router. But when I joined the server with the game. I experience the lag spikes. Could this mean its not my router? When I plug the modem directly to my pc this problem doesn't happen.
    PING 75.126.174.198 (75.126.174.198): 56 data bytes
    64 bytes from 75.126.174.198: icmp_seq=2 ttl=119 time=44.9 ms
    64 bytes from 75.126.174.198: icmp_seq=3 ttl=119 time=46.8 ms
    64 bytes from 75.126.174.198: icmp_seq=4 ttl=119 time=44.1 ms
    64 bytes from 75.126.174.198: icmp_seq=5 ttl=119 time=45.9 ms
    64 bytes from 75.126.174.198: icmp_seq=6 ttl=119 time=47.6 ms
    64 bytes from 75.126.174.198: icmp_seq=7 ttl=119 time=44.3 ms
    64 bytes from 75.126.174.198: icmp_seq=8 ttl=119 time=41.5 ms
    64 bytes from 75.126.174.198: icmp_seq=9 ttl=119 time=45.0 ms
    64 bytes from 75.126.174.198: icmp_seq=10 ttl=119 time=42.7 ms
    64 bytes from 75.126.174.198: icmp_seq=11 ttl=119 time=45.2 ms
    64 bytes from 75.126.174.198: icmp_seq=12 ttl=119 time=48.5 ms
    64 bytes from 75.126.174.198: icmp_seq=13 ttl=119 time=47.0 ms
    64 bytes from 75.126.174.198: icmp_seq=23 ttl=119 time=45.9 ms
    64 bytes from 75.126.174.198: icmp_seq=24 ttl=119 time=42.2 ms
    64 bytes from 75.126.174.198: icmp_seq=25 ttl=119 time=44.0 ms
    64 bytes from 75.126.174.198: icmp_seq=26 ttl=119 time=43.2 ms
    64 bytes from 75.126.174.198: icmp_seq=27 ttl=119 time=47.1 ms
    64 bytes from 75.126.174.198: icmp_seq=28 ttl=119 time=42.8 ms
    64 bytes from 75.126.174.198: icmp_seq=29 ttl=119 time=43.3 ms
    64 bytes from 75.126.174.198: icmp_seq=30 ttl=119 time=44.9 ms
    64 bytes from 75.126.174.198: icmp_seq=41 ttl=119 time=44.7 ms
    64 bytes from 75.126.174.198: icmp_seq=42 ttl=119 time=44.1 ms
    64 bytes from 75.126.174.198: icmp_seq=43 ttl=119 time=44.8 ms
    64 bytes from 75.126.174.198: icmp_seq=44 ttl=119 time=46.1 ms
    64 bytes from 75.126.174.198: icmp_seq=45 ttl=119 time=47.7 ms
    64 bytes from 75.126.174.198: icmp_seq=46 ttl=119 time=44.8 ms
    64 bytes from 75.126.174.198: icmp_seq=47 ttl=119 time=46.1 ms
    64 bytes from 75.126.174.198: icmp_seq=59 ttl=119 time=44.7 ms
    64 bytes from 75.126.174.198: icmp_seq=60 ttl=119 time=42.2 ms
    64 bytes from 75.126.174.198: icmp_seq=61 ttl=119 time=41.9 ms
    64 bytes from 75.126.174.198: icmp_seq=62 ttl=119 time=45.0 ms
    64 bytes from 75.126.174.198: icmp_seq=63 ttl=119 time=44.3 ms
    64 bytes from 75.126.174.198: icmp_seq=64 ttl=119 time=45.5 ms
    64 bytes from 75.126.174.198: icmp_seq=65 ttl=119 time=45.1 ms
    64 bytes from 75.126.174.198: icmp_seq=77 ttl=119 time=47.1 ms
    64 bytes from 75.126.174.198: icmp_seq=78 ttl=119 time=48.7 ms
    64 bytes from 75.126.174.198: icmp_seq=79 ttl=119 time=45.9 ms
    64 bytes from 75.126.174.198: icmp_seq=80 ttl=119 time=45.5 ms
    64 bytes from 75.126.174.198: icmp_seq=81 ttl=119 time=48.7 ms
    64 bytes from 75.126.174.198: icmp_seq=82 ttl=119 time=44.1 ms
    64 bytes from 75.126.174.198: icmp_seq=83 ttl=119 time=43.5 ms
    64 bytes from 75.126.174.198: icmp_seq=92 ttl=119 time=46.7 ms
    64 bytes from 75.126.174.198: icmp_seq=93 ttl=119 time=44.8 ms
    64 bytes from 75.126.174.198: icmp_seq=94 ttl=119 time=45.8 ms
    64 bytes from 75.126.174.198: icmp_seq=95 ttl=119 time=47.0 ms
    64 bytes from 75.126.174.198: icmp_seq=96 ttl=119 time=42.3 ms
    64 bytes from 75.126.174.198: icmp_seq=97 ttl=119 time=45.6 ms
    64 bytes from 75.126.174.198: icmp_seq=98 ttl=119 time=42.6 ms
    64 bytes from 75.126.174.198: icmp_seq=99 ttl=119 time=42.3 ms
    64 bytes from 75.126.174.198: icmp_seq=107 ttl=119 time=43.6 ms"
    system:
    Thermaltake Amor Case
    AMD Opteron 165 Dual Core CPU
    EVGA nforce4 SLI Motherboard
    Hitachi 250GB SATA2 Hard Drive
    OCZ EL Platinum 1GB CAS 2 RAM
    EVGA 7800GTX Graphics Card
    Sunbeam NUUO 550Watt Power Supply

    which game server are you trying to connect to ??  did u try forwarding ports for that game server ?? do u have any firewall running on the computer??

Maybe you are looking for