Possible to charge and listen at same time on XP Computer w/o iTunes?

Is it possible to charge my iPod video and use it (listen/watch video) at the same time by connecting it to a computer that doesn't have iTunes installed? While it's connected and charging it has the "Do not disconnect" message and I can't enter the menu system. If I remove/eject from Windows XP through the "Safely Remove Hardware" icon it appears that it stops charging also.
Thanks.

Windows (with laptops especially) sometimes likes to shut off the USB power when Ejecting a device.
Try this;
1 - On the Start menu, click Control Panel.
2 - Double-click the System icon.
3 - Click the Hardware tab.
4 - Click Device Manager.
5 - Scroll down the list of devices to the Universal Serial Bus controllers
6 - Click the plus icon next to the Universal Serial Bus controllers.
7 - Double-click one of the indented USB Root Hub entries.
8 - Click the Power Management tab.
9 - Deselect the "Allow the computer to turn off this device to save power" option.
10 - Click the OK button at the bottom of the window.
11 - Restart the computer.

Similar Messages

  • Is it possible to record and play at same time in swift, is there a option to record without storing the file

    I am making a microphone, is it possible to record and play at same time in swift, is there a option to record without storing the file

    Its pretty simple with FMS. You just need to do following things:
    Publish using FMLE with following settings: (just telling which are needed , rest you configure based on your needs)
    Video codec: H.264
    Audio Codec: <of your choice>
    Server ip: rtmp://<server-uri>/<app-name>
    Stream Name: mp4:<stream-name>.f4v
    Application : Server-side code
    application.onPublish = function(myclient,mystream){
         mystream.record();
    application.onUnpublish = function(myclient,mystream){
         mystream.record(false);
    Have a client , which subscribes in following live mode:-
    ns.play("mp4:<stream-name>.f4v",-1,0,true);   // this is subscribing in live mode
    In this way even if file is recorded, your clients are subscribing in live mode so all will be in sync.
    Now if you want to disallow any clients who will try to subscribe to "recorded" file when live event is going on, you can achieve using auth adaptor. (let me know if you want to enforce such requirement)
    But i think above solution solves your primary problem. Also please let me know if there are any issues in getting it work , i have given bare minimum which is required.

  • Charge and Listen at the same time?

    I am new to the IPOD experience, and I am listening to my IPOD Nano at work, without ITUNES. I want to listen to the IPOD and charge it at the same time. But it seems while the IPOD is charging, the "do not disconnect" icon is blinking, and I can't play any songs. The only thing I can do is "eject" the IPOD, and then I can listen. But even though it's plugged in, I don't think it's charging. I tried to download my music to some other media player on my office computer, but no luck. I am not allowed to download software, so I can't put ITUNES on my desktop. Any advice?

    even though you "eject" your ipod, it is still charging. and listening to it while it is chargin is okay.

  • How can I display my ipad on a remote screen and charg it at the same time

    I need to display my ipad on a remote screen for 10+ hours a day so I need to be able to charge it at the same time. Is this possible?

    The best way to charge the iPad is with its included AC charger. If it is not doing something energy intensive, it can be charged and used at the same time and not deplete the battery, especially if services that are not being used are turned off.
    Can you share more about the situation or environment in which you want to employ the iPad and which model you want to use? The new iPad consumes more energy and takes longer to charge the battery than the iPad 2.

  • Charge and listen in car?

    i have a 2g ipod shuffle, i can listen to it in my car via a 3.5mm to 3.5mm cable connected to the aux socket of my car, but is there anything i can buy which will allow me to charge and listen to it at the same time?

    your car in this case its just a speaker
    what you can do, its buying a special charger for the car, and buying a special adapter in the shape of a "Y" so it has two inlets and one outlet, one inlet for the charger, another for the cable that connects to the car and the outlet to connect to the ipod.
    hope this was useful

  • Connecting Gigaworks ProGamer G500 to TV and PC at same time?

    Yeah well thats my question. Is it possible to connect both to TV and PC at same time, and get 5.1 sound out of each? (not at same time though). Message Edited by mefi on 10-11-2007 03:47 AM

    OOps sorry I wrote the wrong thing. It's been redone now.
    Message Edited by mefi on 10-11-2007 03:48 AM

  • Nsert/Update and Add Column at the same Table and at the "same" Time

    Hello,
    I want Insert/Update and Add Column at the same Table and at the "same" Time but in different sessions.
    Example:
    At first the "insert/update" statement:
    Insert into TestTable (Testid,Value) values (1,5105);
    After that the "add" statement:
    Alter table TestTable add TestColumn number;
    - sadly now I get the message: ORA-00054: resource busy and acquire with NOWAIT specified
    "insert/update" statement:
    Insert into TestTable (Testid,Value) values (2,1135);
    After that the execute commit.
    I don't know when the first session set the commit statement so I want that the DB the "Alter Table..." statement execute if it's possible.
    If it's possible I want to save a repeat loop with the "Alter Table..." statemtent.
    Thanks for ideas

    Well I want to walk in the rain without and umbrella and still stay dry, but it ain't gonna happen.
    You can't run a DDL statement against a table with transactions pending. Session 2 has to wait until session commits or rollbacks (or until the session is killed). That's just the way it is.
    This makes sense if you think about it. The data dictionary has to be consistent across all sessions. If session 2 was allowed to change the table structure whilst session 1 has a pending transaction then the database is in an inconsistent state. This is easier to see if you consider the reverse situation - the ALTER TABLE statement run by session 2 does a DROP COLUMN TESTID rather than adding a column: now what should happen to session 1's INSERT statement? You have retrospectively invalidated a statement that was perfectly legal when it was executed.
    If it's possible I want to save a repeat loop with the "Alter Table..." statemtent.Fnord.
    Cheers, APC

  • Delete records in a table and at the same time print out for reference

    I am working on a req to delete some records from a table and at the same time, record/print the deleted records in the outstream (DBMS_OUTPUT.PUT_LINE)
    DECLARE
    v_rec_po hst_po%ROWTYPE;
    BEGIN
    DELETE FROM hst_po po
    WHERE abbrpoid = '&opportunity_code'
    AND updatedby = (SELECT employeeid
    FROM tes_employee
    WHERE name = &emp_name)
    AND audittimestamp BETWEEN TO_DATE ('&start_timestamp',
    'DD-MON-YYYY HH24:MI'
    AND TO_DATE ('&end_timestamp',
    'DD-MON-YYYY HH24:MI'
    END;
    I was thinking of using returning into and then using DBMS_output to pull out the delted records, but there will be multiple rows deleted fro this statements. I am stuck here..Can anyone help

    How about:
    SQL> create table t
      2  (x int)
      3  /
    Table created.
    SQL> insert into t
      2  select rownum
      3    from all_objects
      4   where rownum <= 10
      5  /
    10 rows created.
    SQL> declare
      2     cnt pls_integer;
      3  begin
      4     delete from t;
      5     cnt := sql%rowcount;
      6     dbms_output.put_line ('Removed: '||to_Char (cnt));
      7  end;
      8  /
    Removed: 10
    PL/SQL procedure successfully completed.Edited by: Alex Nuijten on Jun 4, 2009 8:58 AM

  • Is there a way I can stream video from my 2012 AirMac to the Apple TV using airplay and at the same time stream the audio to an air speaker?

    Is there a way stream video from a 2012 MacBook Air to a TV using Apple TV and at the same time steam the audio to an air speaker. Also the same question but using an ipad

    You can try one thing. Follow these steps:
    1. On your Mac, turn on AirPlay Mirroring and connect it to the Apple TV, so audio and video will stream from the Apple TV.
    2. Turn off the sound of the TV where you have connected the Apple TV.
    3. Then, make sure that you have turned on the AirPlay speakers. Then, open System Preferences > Sound > Output, and choose the external speakers, so sound will stream from these external speakers.
    This should work correctly

  • Recording Video and Audio at Same time with simultaneous sync

    I want to record a keyboard performance into garageband and at the same time record the playing of that performance with my video camera. Then I want to create a movie using the music from garageband and the video from the camera. I was thinking that if I can sync the video and audio when I'm recording the session, then that part is taken care of. Or, maybe this is easier than I think it is?
    Is there a way to do this so that I can use the garageband record performance and have it synced to the video on the camera?
    I don't want to use the audio from the video camera because the performance that is captured in Garageband will be much better and I can do editing of the individual notes in GB.
    In the end, I just want to make a movie and/or podcast of the performance.
    I'm a newbie regarding this, but I did search the forums and couldn't find anything specific. Mostly it was about importing video into GB3 and then syncing new audio. I'll basically have audio and video from the same performance in two separate locations and I want to bring them together perfectly in Garageband.
    Thanks for any help you can provide.
    Powerbook G4 - DVI   Mac OS X (10.4.9)  

    Okay. I got the video and audio all together. I told you I'd link to it when it was up.
    http://www.youtube.com/watch?v=FxssYpUNJm8
    There's also a copy of it at http://www.myspace.com/bonjimmy/
    And as a quick side comment, even though I uploaded the same video to both YouTube and MySpace, the MySpace version is much better. YouTube must do something to the video after it's uploaded.
    What I learned doing this project:
    I recorded the video first (which gave me the sequencing of the piano performance) and then I dubbed the audio in later. However, there wasn't a good way to sync the video and the prerecorded piano, so there are some spots where the dubbed audio vocal isn't accurate to the video. I'm not sure what the pros do for this. I was hoping I'd remember how I sang for the video but when a couple weeks go by before re-doing the audio, it's about impossible. I tried, though.
    I remember working with an old 4-track and smpte to a sequencer a long time ago. With the way it is now, it's pretty cool that you can record digitally and mix and match and everything falls together perfectly as long as you have a place to match the video and the audio. It's pretty cool.
    What else???
    Does anyone have suggestions that would have made it better? Also, if you have suggestions on my performance or whatever, I'd love comments, but you can do that on the linked page.
    Thanks again for all your help. (The point of the video is because I'm thinking about getting back out there and doing some more playing... I'm looking for a band or something else interesting...)
    Powerbook G4 - DVI   Mac OS X (10.4.10)  

  • How to collect form responses in adobe formscentral and at the same time receive form responses through email

    My client wants to have the form that I created in FormsCentral to be able to collect email responses. So to do this, I downloaded the form as PDF then imported it into Acrobat. I created a button in Acrobat (this will be for the email response part). I used this script for that function:
    // This is the form return email. It's hardcoded
    // so that the form is always returned to the same address.
    // Change address on your form to match the code below
    var cToAddr = "[email protected]"
    // First, get the client CC email address
    var cCCAddr = this.getField("ClientEmail").value;
    // Now get the beneficiary email only if it is filled out
    var cBenAddr = this.getField("BennyEmail").value;
    if(cBenAddr != "")
    cCCAddr += ";" + cBenAddr;
    // Set the subject and body text for the email message
    var cSubLine = "Form X-1 returned from client"
    var cBody = "Thank you for submitting your form.\n" + "Save the filled form attachment for your own records"
    // Send the entire PDF as a file attachment on an email
    this.mailDoc({bUI: true, cTo: cToAddr, cCc: cCCAddr, cSubject: cSubLine, cMsg: cBody});
    I got it from here: http://acrobatusers.com/tutorials/dynamically-setting-submit-e-mail-address
    I'm still kinda not sure how it works but I'm getting the idea. Now what I'm having trouble with is, how do I make it so that the user will be required to click on the scripted button and at the same time, also click on the FormsCentral's generated submit button? Because as I see it, the user can click on the scripted button but they can just close out the form without submitting it to FormsCentral.
    Is there any way to make my idea work?
    Any help is very much appreciated!
    Thanks!

    I do not know or have time right now to look up NDP format.
    To write to NTFS from Mac, you need a driver.
    And to write to HFS from Windows also.
    I strongly recommend Paragon drivers for both.
    That way you can access anything from any platform.
    Paragon Software for Mac

  • How can I copy documents from a Sharepoint On Premises library to a Sharepoint Online library and at the same time preserving their metadata?

    How can I copy documents from a Sharepoint On Premises library to a Sharepoint Online library and at the same time preserving their metadata?
    I use the Open Explorer Windows to drag and drop the files, but the metadata are not copied. Thanks.

    To maintain the metadata you'll need to use one of the third party tools that does this kind of migration.  Metalogix has a product with a free trial that we have used before.  (Don't remember whether the free version maintains metadata or not).
     You can read about it here:
    http://www.metalogix.com/Products/Content-Matrix.aspx
    Paul Stork SharePoint Server MVP
    Principal Architect: Blue Chip Consulting Group
    Blog: http://dontpapanic.com/blog
    Twitter: Follow @pstork
    Please remember to mark your question as "answered" if this solves your problem.

  • Bluetooth seems like working since last week and at the same time I can't manage the Wi-Fi

    Bluetooth seems like working since last week and at the same time I can't manage the Wi-Fi. I have already restored.

    This entire thing is a hair over four months old, I don't think it should be acting up this much. Plus, this problem happens only once out of every 40 or 50 times I start this thing up. It's very infrequent, but it's there, and it just bothers me, I guess.
    That said, I would try reinstalling, but I wouldn't be able to tell if it'd worked unless the problem never cropped up again in a long, long time. Sadly I also don't have access to my OSX discs at the moment (I'm out of the country).

  • How do i get a still image to fade the same way and at the same time as a video?

    I have a video stacked on top of a still image. When i add a transition, the still turns to a black screen while the video fades in accordance to the transition. How do i get the still image to fade the same way and at the same time as the video?

    I do. I've applied it to both the  still image and the video. Say i used the lens flare transition. If i apply it to both the video and the still image, the video will dissolve in to the next frame, but the still image will go to a black screen and then jump to the next frame. Its almost as if i inserted a black frame instead of a transition, but only for 2 seconds. Below is kind of a peek what it looks like.

  • Create SP that returns value and at the same time displays query result in output window

    I would like create an SP which will return the records from the table and also return value to my c# client application.
    For Example:
    Select * from employee returns all the query results in output window.
    Now I want to create an SP
    Create procedure Test
    As
    Declare @ret int,
    Select * from employee
    set @ret = Select count(*) from employee
    if @ret > 0
    return 1
    else
    return 0
    The above algo should return 1 0r 0 to c# client application and at the same time display all employees in sql query output window.
    Can u pls help in this regard.

    The above algo should return 1 0r 0 to c# client application and at the same time display all employees in sql query output window.
    Why?  and No!
    Why?  Your procedure generates a resultset of some number of rows.  You check the resultset for the presence of rows to determine if "anything is there".  You don't need a separate value to tell you this.  Note that it helps
    to post tsql that is syntactically correct.   While we're at it, if you just need to know that rows exist there is no need to count them since that does more work than required.  Simply test for existence using the appropriately-named function
    "exists".  E.g., if exists (select * from dbo.employee). 
    No!  A stored procedure does not display anything anywhere.  The application which executes the procedures is responsible for the consumption of the resultset; it chooses what to do and what to display. 
    Lastly, do not get into the lazy habit of using the asterisk in your tsql code.  That is not best practice.  Along with that, you should also get into the following best practice habits:
    schema-qualify your objects (i.e., dbo.employee)
    terminate every statement - it will eventually be required.

Maybe you are looking for