How much wifi does apple tv use up

i got a apple tv the other day and the wifi network i have been using has been realy slow i mainnly watch tv shows or usic through homesharing from my pc and i also use airplay can someone plz help

Welcome to the Apple Community.
This suggests you may have a problem on your network.
The following article(s) may help you.
Troubleshooting Wi-Fi networks and connections 
Recommended Wi-Fi settings
Sources of Interference
Wifi Diagnostic Software (for Mac users)

Similar Messages

  • How much data does Apple TV use?

    I am experiencing a large amount of data usage and cannot determine what the culprit is.  I am approaching my cap of data allowance on a regular basis.  Does anyone know how much data the Apple TV uses?  I realize it depends on what you are streaming.  I primarily stream Netflix (set on the lowest data rate)
    Thanks

    I found this answer on NetFlix's blog sometime last year:
    In the USA you have 3 video quality options: good quality, better quality, and best quality. Here is how much bandwidth they each use:
    Good quality (up to 0.3 GB per hour)
    Better quality (up to 0.7 GB per hour)
    Best quality (up to 1 GB per hour, or up to 2.3 GB per hour for HD)
    Depending on how many movies you watch this could have a huge impact on your monthly usage...obviously your ISP wants you to watch its own movies.

  • How much data does Apple Maps use?

    I used maps for 15-20 minutes and it used 300 MB of network data.  Looking for an answer because I only get 2GB per month and I wasted almost 20% of it in less than a half hour.

    I guess it is possible I had satellite view on.  I just used whatever was default and I got that huge data charge.  I have just been avoiding maps since and using everything else normally so it has to be maps that was my big problem.  Thanks for the response!

  • How much data does google maps use

    how much data does google maos use ?

    That question has a lot of variables. If you are just looking up an address it should not using very much. If you are using  it for an 8 hour drive it will use quite a bit.

  • How much space does a blob use?

    How much space does a BLOB use?
    Does it use allocated anyspace if its empty?

    It will size appropriately:
    TEST.SQL>CREATE TABLE TBLOB
      2  (
      3  A BLOB
      4  ) TABLESPACE _SANITIZED_;
    TABLE CREATED.
    TEST.SQL>SELECT INITIAL_EXTENT FROM DBA_TABLESPACES WHERE TABLESPACE_NAME='_SANITIZED_';
    INITIAL_EXTENT
           5242880
    TEST.SQL>SELECT * FROM DBA_EXTENTS WHERE SEGMENT_NAME='TBLOB';
    OWNER                          SEGMENT_NAME                                                                      PARTITION_NAME                 SEGMENT_TYPE
    TABLESPACE_NAME                 EXTENT_ID    FILE_ID   BLOCK_ID      BYTES     BLOCKS RELATIVE_FNO
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  0         16    1201289    5242880        640           16
    TEST.SQL>SELECT * FROM DBA_OBJECTS WHERE CREATED > SYSDATE-1;
    OWNER                          OBJECT_NAME
    SUBOBJECT_NAME                  OBJECT_ID DATA_OBJECT_ID OBJECT_TYPE        CREATED  LAST_DDL TIMESTAMP           STATUS  T G S
    YJAM                           SYS_LOB0000920875C00001$$
                                       920876         920876 LOB                14:41:36 14:41:36 2005-11-16:14:41:36 VALID   N Y N
    YJAM                           TBLOB
                                       920875         920875 TABLE              14:41:36 14:41:36 2005-11-16:14:41:36 VALID   N N N
    TEST.SQL>SELECT * FROM DBA_EXTENTS WHERE SEGMENT_NAME='SYS_LOB0000920875C00001$$';
    OWNER                          SEGMENT_NAME                                                                      PARTITION_NAME                 SEGMENT_TYPE
    TABLESPACE_NAME                 EXTENT_ID    FILE_ID   BLOCK_ID      BYTES     BLOCKS RELATIVE_FNO
    YJAM                           SYS_LOB0000920875C00001$$                                                                                        LOBSEGMENT
    _SANITIZED_                                  0         16    1202569    5242880        640           16
    TEST.SQL>DECLARE
      2    VALINS VARCHAR2(4000);
      3  BEGIN
      4    VALINS:='1';
      5    FOR I IN 1..100000
      6    LOOP
      7      INSERT INTO TBLOB VALUES (RPAD(VALINS,4000,'0'));
      8    END LOOP;
      9  END;
    10  /
    PL/SQL procedure successfully completed.
    TEST.SQL>COMMIT;
    Commit complete.
    TEST.SQL>SELECT * FROM DBA_EXTENTS WHERE SEGMENT_NAME IN ('SYS_LOB0000920875C00001$$','TBLOB');
    OWNER                          SEGMENT_NAME                                                                      PARTITION_NAME                 SEGMENT_TYPE
    TABLESPACE_NAME                 EXTENT_ID    FILE_ID   BLOCK_ID      BYTES     BLOCKS RELATIVE_FNO
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  0         16    1201289    5242880        640           16
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  1         17    1169929    5242880        640           17
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  2         18    1163529    5242880        640           18
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  3         19    1176969    5242880        640           19
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  4          5     379529    5242880        640            5
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                  5         14     375689    5242880        640           14
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                 51         18    1172489    5242880        640           18
    YJAM                           TBLOB                                                                                                            TABLE
    _SANITIZED_                                 52         19    1191689    5242880        640           19
    YJAM                           SYS_LOB0000920875C00001$$                                                                                        LOBSEGMENT
    _SANITIZED_                                  0         16    1202569    5242880        640           16
    54 rows selected.
    TEST.SQL>ANALYZE TABLE TBLOB COMPUTE STATISTICS;
    Table analyzed.
    TEST.SQL>SELECT * FROM DBA_TABLES WHERE TABLE_NAME='TBLOB';
    OWNER                          TABLE_NAME                     TABLESPACE_NAME                CLUSTER_NAME                   IOT_NAME                         PCT_FREE   PCT_USED
    INI_TRANS  MAX_TRANS INITIAL_EXTENT NEXT_EXTENT MIN_EXTENTS MAX_EXTENTS PCT_INCREASE  FREELISTS FREELIST_GROUPS LOG B   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE  CHAIN_CNT
    AVG_ROW_LEN AVG_SPACE_FREELIST_BLOCKS NUM_FREELIST_BLOCKS DEGREE     INSTANCES  CACHE TABLE_LO SAMPLE_SIZE LAST_ANA PAR IOT_TYPE     T S NES BUFFER_ ROW_MOVE GLO USE
    DURATION        SKIP_COR MON CLUSTER_OWNER                  DEPENDEN COMPRESS
    YJAM                           TBLOB                          _SANITIZED_                                                                                               10
             1        255        5242880     5242880           1  2147483645            0                            YES N     100000      33547          373       1977          0
           2042                         0                   0          1          1     N ENABLED       100000 14:51:22 NO               N N NO  DEFAULT DISABLED NO  NO
                    DISABLED NO                                 DISABLED DISABLED
    TEST.SQL>SELECT BYTES/1024 FROM DBA_SEGMENTS WHERE SEGMENT_NAME='TBLOB';
    BYTES/1024
        271360   
    TEST.SQL>TRUNCATE TABLE TBLOB;
    Table truncated.
    TEST.SQL>BEGIN
      2    FOR i IN 1..100000
      3    LOOP
      4      INSERT INTO TBLOB VALUES ('1');
      5    END LOOP;
      6  END;
      7  /
    PL/SQL procedure successfully completed.
    TEST.SQL>COMMIT;
    Commit complete.
    TEST.SQL>ANALYZE TABLE TBLOB COMPUTE STATISTICS;
    Table analyzed.
    TEST.SQL>SELECT BYTES/1024 FROM DBA_SEGMENTS WHERE SEGMENT_NAME='TBLOB';
    BYTES/1024
          5120Note: there is a deported blob segment for the pointers I forgot in my previous post.
    HTH,
    Yoann.
    Message was edited by:
    Yoann Mainguy
    Hmm, forgot that for a full comparison of the avg linesize:
    TEST.SQL>SELECT * FROM DBA_TABLES WHERE TABLE_NAME='TBLOB';
    OWNER                          TABLE_NAME                     TABLESPACE_NAME                CLUSTER_NAME                   IOT_NAME                         PCT_FREE   PCT_USED
    INI_TRANS  MAX_TRANS INITIAL_EXTENT NEXT_EXTENT MIN_EXTENTS MAX_EXTENTS PCT_INCREASE  FREELISTS FREELIST_GROUPS LOG B   NUM_ROWS     BLOCKS EMPTY_BLOCKS  AVG_SPACE  CHAIN_CNT
    AVG_ROW_LEN AVG_SPACE_FREELIST_BLOCKS NUM_FREELIST_BLOCKS DEGREE     INSTANCES  CACHE TABLE_LO SAMPLE_SIZE LAST_ANA PAR IOT_TYPE     T S NES BUFFER_ ROW_MOVE GLO USE
    DURATION        SKIP_COR MON CLUSTER_OWNER                  DEPENDEN COMPRESS
    YJAM                           TBLOB                          _SANITIZED_                                                                   10
             1        255        5242880     5242880           1  2147483645            0                            YES N     100000        628           12       1223          0
             41                         0                   0          1          1     N ENABLED       100000 14:56:56 NO               N N NO  DEFAULT DISABLED NO  NO
                    DISABLED NO                                 DISABLED DISABLED         

  • How much space does apple give you for free in the cloud

    how much space does apple give any user in the cloud

    5Gb - http://www.apple.com/icloud/what-is.html

  • How much energy does an iMac uses in volts? (regular and when it is asleep)

    How much energy does an imac uses

    The voltage during sleep or usage is the same. It's the current in Amperes that changes. The "energy" is the wattage consumed which is Volts times Amperes. That information should be in the User Guide. If you don't have one you can download one here.
    According to the specifications the rated power consumption is 200 watts for the 20" model and 280 watts for the 24" model. Sleep consumption is probably around 40 watts.

  • How much data does a call use over 3G?

    Does anyone know how much data a call uses when using 3G?
    For example if I made a 10min call over 3G is there an easy way to estimate how much data it would use?

    I'd check my balance, make a call, then check the balance again. That should give a fair indication.
    I'm a light user and find Tesco's SIM-only deal (500mins, 500MB, 500texts) is way more than adequate for my basic mobile needs for a tenner a month. Worth considering.
    You can click the white star next to this message if you think it was helpful.

  • How much tax does Apple charge?

    I want to get an iPad 4 black 32gb wifi only and a smart case. The iPad is $599 and the case is $49.99. How much would that be with tax? I live in California if that matters.

    Whatever is the appropriate federal, state, county, city and/or
    other jurisdiction tax for the location where the sale is made.
    Call the Apple store or retailer if you are in doubt.

  • How much sales does Apple lose by not allowing upgrade of hardware?

    I wonder if Apple has ever conducted market research to find out how much sales they lose because of the inability to upgrade components with a mac?
    I suspect they haven't done so because they don't wish to find out the answer!
    I imagine they have simply assumed that they don't want to affect the bottom line sales of new macs by allowing users to upgarde their older machines.
    I believe this is a shortsighted view. If for instance users could upgrade components inside the tower, by being allowed to say buy the motherboard on its own. There would be significant numbers of people who would buy the tower (who now don't) that would offset the reduction in sales of new complete systems in the future.
    Wouldn't it be fun to find out?
    Instead of having to spend $3000 to upgrade to the latest and greatest by buying a complete system Apple could offer the motherboard to repace the older one thus saving the consumer a lot of money! Is this not what serving the customer is really about? and part of the reason why they only have 5% market share?

    Since you asked, and I seem to be in a particularily foul mood today, I'll take some of that action.
    I quit the upgrade dance three years ago when I found out I could have a great little Unix workstation that sat on my lap. No longer am I forced to worry what hardware will work with Solaris, or Linux, or FreeBSD. I plunk down my money, and it works. Works so well that all of the machines I've purchased (one per year) are just as relevant as they day I purchased them. Yeah, they don't work so fast as the newest, but so what?
    Dell, HP, Gateway; they do not allow you to purchase motherboards in which to upgrade your computer. Not notebooks (never, ever in fact), and only desktops because their crummy form-factor is pretty much the same as everyone else. But that's been changing too.
    If you have a question about the Macbook Pro, please ask it. Otherwise, thanks for the opportunity to vent on you. It's been a rather sad day for me and I appreciate the chance to take it out on you.

  • How much power does the iMac use at idle? (e.g. in watts)

    I've just noted how much my current PC chews up in power - wondering how good an iMac would be?

    The specs:
    http://images.apple.com/environment/reports/docs/21.5inchiMac_Product_Environmental_Report20100727.pdf
    http://images.apple.com/environment/reports/docs/27inchiMac_Product_Environmental_Report_20100727.pdf

  • How much data does Assisted GPS use

    Guys
    I'm planning a trip into Europe, we will of course be taking a TomTom, but in the event that I need OVI maps, could you tell me how much data AGPS uses.
    O2 charge £6.00 per mb, so I don't want to come home and find a massive bill waiting for me.

    Usually when I try to use it, I use about 6-15mb per fix. It doesnt use A-GPS again after getting a fix unless satellite signals fail.
    If you find my post helpful please click the green star on the left under the avatar. Thanks.

  • How much power does a Mac use when it's sleeping

    I recently asked about shutting down vs. sleeping a computer at night. Now I'm wondering how much power it uses sleeeping. I have a laptop which I imagine is pretty dormant. What about a desktop-- Intel Mac?

    I can tell you nothing about a laptop as I don't see a way of measuring what it's using while asleep. As for the desktop you are pretty much spot on, You can use it for about 11 times longer than a 100W light bulb for the same money.
    In fact by using one of those price comparison websites I work out that it'd cost, (@ 10.17p/KWH), [24x365] x 0.009 x 0.1017 = £8.018 if it was left on standby all the time for a full year.
    That excludes things like a standing charge for the electricity, and assumes you were on the Fixed S@ver Dual Fuel plan from EDF Energy.

  • How much space does IOS 6 use vs IOS 5.1.1

    I upgraded my iPhone 4S to IOS 6 yesterday.  Today, I was telling a friend about it and she said she doesn't have enough free space to install it on her 8GB iPhone 4.  This got me thinking that with all the upgrades, how much more space does IOS6 require vs IOS5.X.X.  Does anyone know?
    Thanks
    Mike

    Bit of a strange one, the file itself was 650-something MB, but when it came to install, it required me to have at least 2.5GB free space. When it was installed though, there was no change in the free space on my iphone. So, its a mystery.

  • OK, So How Much RAM Does Photoshop CS5 Use?

    ANSWER: All you give it, lol!
    I posted this for those buying or building a PC and are deciding "how much RAM do I need?"
    I built a fairly powerful rig for Photoshop and editing in Premiere Pro, and without all the tech specs, I have 24GB of ram, mostly for encoding HiDef video. Surely Photoshop wouldn't eat THAT much, right? Dead wrong. I have Photoshop set to utilize 75% of my available ram which would be near 19GB. I just worked on a fairly large image, where I took 23 vertical shots with my 5D Mark II (5616x3744 resolution files, pretty big) and did a large photomerge which ended up at about 60,000 x 5,500 after the crop. Granted, large image, nearly 3½GB .PSB file. So while the merging and aligning was taking place, I watched my Ram Gadget soar, right up to 19GB within 4 minutes of processing:
    Yowza. I expected that from Media Encoder processing 1080p HD video into a Blu-Ray disc format, but not a Photoshop file. So, the point of all this: ram is lower in cost than it's been in many months, a 12GB Mushkin kit (3x4GB) is down to $169 on Newegg. Don't skimp in that arena, fill 'er up as best as you can. Future versions aren't going to use less ram, let's face it, the software has to process a lot of pixels! Try to go a minimum of 6GB, but definitely 8-12GB if you can. Of course this means bye-bye FINALLY to 32-bit operating systems, but once you have a large playground of memory, you and Photoshop will be happy campers.

    I purposely waited to respond so I wouldn't write things I'd regret later:
    "Nice system."
    Huh? I didn't list my system on purpose. The point wasn't showing off gear, it was PS's use of RAM.
    "With regard to RAM and Photoshop, people often say more is better without qualification, and you have just confirmed that advice."
    You actually have no evidence of my qualifications. I'll send you a link to my Microsoft transcript if you'd like, there are 16 certifications you can peruse.
    "Personally, with 24 GB of RAM I'd suggest settting Photoshop's limit even higher - e.g., to 95% (which is what I use for 8 GB) ...  The OS doesn't need much on that scale."
    24GB x 95% = 22.,8GB... that leaves 1.2GB of RAM for everything else including Windows 7 64 bit. I'm sorry, that's an extremely unwise choice. Noel, maybe you need to remove the "unqualified" beam from your own eye before you point it out in others.
    If anyone is reading this please PLEASE don't set your Photoshop limit to 95% of your available ram. Your system will mostly likely crash within minutes of starting Photoshop. The proven setting is 75%, set it there and move on. Thanks.

Maybe you are looking for

  • I created a purchase order and deleted it.

    I created a purchase order and deleted it. when i query the purchase order even in history table the PO is not avaialble. why? The table i queried In release r12 SELECT * FROM apps.po_history_all

  • How to get closing balance in MM

    hi Please help me to get closing balance for every line in ABAP program. for example doc   dt     Mvt  receipts  issues     cl. bal                                                                                 op. bal    100 1 -  1.1.06 -  101 - 10

  • (268625273) Q WSI-29 Can you give any performance benchmarks for WLS web services?

    Q<WSI-29> Can you give any performance benchmarks for WLS web services? A<WSI-29>: It is very difficult to quantify performance aspects of web services since they depend on so many variables including but not limited to: backend system processing by

  • RPM for R12

    Haiall, Am using note. 555876.1 to install R12 in linux .am uanble to find the following RPM's.. glibc-2.3.4-2.25.i686.rpm (32-bit) glibc-devel-2.3.4-2.25.i386.rpm (32-bit) glibc-devel-2.3.4-2.25.x86_64.rpm libstdc++-3.4.6-3.i386.rpm (32-bit) libstdc

  • No Sound in iPhone Simulator

    os x 10.9.1 run the iphone Simulator and play sound in safari, but nothing to happen. i try to unplug headphone and increase the volume of the built-in loudspeaker, it works. by now, i plug in headphones it works also. i don,t no why?