Synch with Windows Media Player

So, I'm converting to use Windows Media Player 0 as my music library manager. For the life of me, I cannot figure out how to make this thing auto-sync! I started from scratch and uploaded all music after a reformat. Now, I added a couple tunes to My Music folder (where all my music is stored) and it's not figuring it out.
It appears to be set to manual sync.
After going through the Help, it appears that I might need to go through the Device Setup Wizard again although I cannot find out how to envoke the thing. If I click properties on my device, I see a grayed out option for enabling automatic sych.
Please help me here. I have been trying to figure this out for weeks now...
After this, I'll try to figure out how to get the Playlists working...

yes, autosync worked with the Creative s/w. It just is awkward to use (IMO) and I really just wanted to converge on Windows Media Player since I use that as my player on my PC too. So, I dl'd that NomadSync tool. It might work once I figure out why some tunes are not showing up in the player and some are duplicates. That sucks that Media Player doesn't work

Similar Messages

  • BB 8220 Pearl Flip drops WiFi calls when synch music with Windows Media Player

    I noticed the 8220 crashes or drops calls if I synchronize a playlist of songs with Windows Media Player.  Strangely, if I simply shuffle the songs with no playlist, then I encounter less problems.  Is this because I don't have enough room on the media card after synchronization?  (I set a playlist and sychronize it as there are certain songs I do not wish to place on my phone.)
    I'm using: Windows XP, Windows Media Player version 11, Blackberry Desktop Manager version 5.0.1.

    I'll try to answer to some of your questions.
    The Media Card is according to the OS verison on the BlackBerry. The model doesn't really matter.
    Look at Options > About, third line down beginning with a "v.4.xxx".
    Maximum capacities:
    BlackBerry Device Software Media Card Size Limit
    BlackBerry Device Software 4.2.0 -- Up to 2 GB
    BlackBerry Device Software 4.2.1 -- Up to 4 GB
    BlackBerry Device Software 4.2.2 -- Up to 4 GB
    BlackBerry Device Software 4.3.0 -- Up to 8 GB
    BlackBerry Device Software 4.5.0 -- Up to 8 GB
    BlackBerry Device Software 4.5.0.81 and above -- Up to 16 GB
    BlackBerry Device Software 4.6.0 -- Up to 32 GB
    if your issue solved set "Solution" mark at the relevant post

  • I tried to Sync with Windows Media Player, What happend?

    I, being the stupid impulsive 17 year old that I am, tried to sync a huge list of songs from my fathers computer(which does not have Itunes) with my Ipod. Well... I thought it had worked, stupid me. To my suprise when I had disconnected my Ipod I found that NONE of the songs appeared on the list and further, when I returned home, I found that my computer (which has both Itunes and Windows Media Player) could not find the songs on the Ipod. Please tell me what Happened!
    Thank You

    The iPod cannot be synched to Windows Media Player and in its attempt, it probably corrupted the iPod's database.

  • While installing a program (MediaCenter.exe) to handle audiobooks from the library, I erroneously associated the download site with Windows Media Player instead of the actual application (NetLibrary Media Center). How can I reverse/change this?

    While installing a program (MediaCenter.exe) to handle audiobooks from the library, I erroneously associated the download site with Windows Media Player instead of the actual application (NetLibrary Media Center). How can I reverse/change this? Reinstalling the application does not clear the error, so I'm assuming the association is somewhere in Firefox.

    Never mind -- I just found it under Tools/Options.../Applications, where I changed the incorrect association of "nlmcp" from Windows Media Player to the correct one, NetLibrary Media Center. Done!

  • Problem with Windows Media Player since installing Firefox 4.0

    Problems with Window Media Player. When I am using Windows Media Player to view a video from another source I am having problems. When I hit pause and then go back to hit play it does not have any sound. The player is not on mute and it keeps going from pause to play with no sound most times. Please help. Thank-you. I have Windows Vista programs.

    What can I do to get the Windows Media Player to work properly?

  • Problem with Windows Media Player -- saving, transferring

    Operating system:   Windows 7 Home Premium       
    Product: HP Pavilion P6000 Series
    Windows Media Player
    Copy short videos onto a thumbnail drive from a different computer running Windows 7 with Windows Media Player.    Thumbnail drive accepts files, lists and can play back fine on same computer.    Take thumbnail drive to different computer also running/using Windows Media Player & Windows 7, and playback only plays back audio -- no picture.  What am I doing wrong? 

    As WMP is not a DVD player, my suggestion would be to tell your clients to never use WMP.All our DVD discs go out with a warning not to allow WMP to be used.
    In most computer setups, WMP does not play back video correctly as it does not have an MPEG codec installed, or has navigational problems.
    All computers that have a DVD drive fitted, will have a dedicated DVD software player installed, such as Win DVD or Power DVD, so why not use that?

  • Safari with Windows Media Player cannot use PHP as filename/src/url

    I'm running Windows XP Pro SP2 with Windows Media Player 11
    and Safari 3 public beta. In addition to being the absolute
    slowest browser among MSIE, Firefox, Netscape, and Opera, the
    Safari browser has two annoying WMP defects.
    1) Even with WMP 11 installed, the code below for embedding
    can use either the classid for WMP v6.4 or v7+ but Safari
    (or rather it's plugin) always displays a v6.4 looking UI.
    All other browsers display the media player using the v11 UI
    2) Safari will not download the movie if the "filename" param
    is a web url (e.g. getmovie.php?select=1234 ) rather than the
    precise name of the movie file itself (e.g. "movie.wmv"). The
    other browsers may differ in use of the param name="xxxx", where
    xxxx is "filename" or "src" or "url" or "data" ... but Safari
    will not work using any of these.
    Has anyone successfully embedded a WMP object that uses the
    URL as a PHP page (or other server-side script) ? I have already
    my server-side PHP code that works perfectly for MSIE, Firefox,
    Netscape, and opera. Safari is the only problem browser.
    ------------------------CODE------------
    //Media Player v6.4
    // CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95
    //Media Player v7,9,10,11
    // CLSID:6BF52A52-394A-11d3-B153-00C04F79FAA6
    <object id="MediaPlayer"
    classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
    type="application/x-oleobject"
    height="300" width="300"
    codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab #Version=6,4,5,715"
    standby="Loading Microsoft Windows Media Player components...">
    <param name="url" value="http://www.yourdomain.com/movie.wmv">
    <!-- For other browsers * Windows Media Player -->
    <!--[if !IE]> <-->
    <object type="application/x-mplayer2" height="300" width="300">
    <param name="filename" value="http://www.yourdomain.com/movie.wmv">
    </object>
    <!--> <![endif]-->
    </object>

    I have run into several issues pointing to what you are describing...
    I fixed my Safari by installing the WMP plugin. I am able to view visualizations embedded into a webpage, one of which I created...I am able to view videos and so on.. Before I installed the plugin, All that would load is a place holder which looked like the old WMP and would not function properly. However this is what is displayed beside the media which is embedded.
    I think that I got the plugin by going to the download page for Safari and looking for plugins. Funny thing was that the plugin that I installed was the one for Firefox on its site that nobody every installs because Firefox gets the plugin if you already have WMP11 installed. Anyway this should solve your problem...with most..
    I have noticed just now that PHP served links or applications which launch in their own window and are protected by PHP script do work but still display a lack of functionality showing the Version 6.4 that you are speaking of. I checked it out using the KDGE Live Stream which opens another window, and displays version 11 properly ( in other browsers ), the link which is served is also protected and will close any media player that tries to play it on its own. It soley depends on the script which is coded into the page or window for the player. I can see this method as useful for a corporation as large and well advertised as ClearChannel Productions, because of the lack of bandwidth and cost to the company. Several sources do this and it winds up being an issue for the website administrator and designers to take care of, or update the script, or the person who has written the plugin, which could be from a number of resource; this particular instance would be the author of the WMP Plugin for Firefox.
    For any other purpose though the plugin I mentioned above should get rid of ( MOST ) of that problem.
    http://www.apple.com/safari/download/plugins.html
    Message was edited by: heath28m
    This is also a good link for sources and coding issues when embedding WMP.. Hope some of this helps..http://www.codingforums.com/showthread.php?t=50666&page=39
    Message was edited by: heath28m

  • How do i sync my ipod with windows media player?

    how do i sync my ipod touch 4 generation 8gb with windows media player?

    123abcshay wrote:
    how do i sync my ipod touch 4 generation 8gb with windows media player?
    An iPod Touch will require iTunes.
    Stedman

  • Content Engine compatability with Windows Media Player

    I am currently running ACNS version 5.5 on our CE510 Content Engine. We want to set this box up to serve VOD requests from WMT. I think the clients on site are all using Windows Media Player version 10. Does this version of ACNS software work with Windows Media Player 10?

    Dan
    this brings up an interesting point. The content (which is canned Video on an Intranet Web site) is HTTP? I am wasting my time here by trying to use the Windows MP services?? Perhaps I already have what I need...
    Your comments appreciated.
    Kevin

  • Viewing iMovie file with Windows Media Player

    Is it possible to convert an iMovie file to allow viewing on a PC with Windows Media Player? Unable to use Quicktime on the PC due to unique reason while on mission.

    RobbieSnr wrote:
    AppleMan1958 wrote:
    You will need [Flip4Mac|http://www.telestream.net/flip4mac-wmv/overview.htm]
    I have a similar problem, which is that I want a Windows user to be able to view my iMovie file using Windows Media Player. I have Flip4Mac on my Mac but isn't that for converting the other way around - for viewing a Windows Media Player file on a Mac?
    Sorry, I see that there is a Studio version that allows conversion to wmv - I only had the free basic version for Flip4Mac - should have looked more closely at the website!

  • Can i sync with windows media player?

    Am i able to sync music to my ipod with windows Media player? or do i have to use itunes?

    iPods are only compatible with iTunes.

  • Synk iPod touch with windows media player

    Can iPod Touch be sync with windows media Player?

    No.
    Why would you want to use WMP instead of iTunes?

  • Is iphone4s compatible with Windows media Player

    Is iphone 4s comatible with Windows Media Player? Cannot synce to my WMP library.

    No, need conversion.
    Audio formats supported: AAC (8 to 320 Kbps), Protected AAC (from iTunes Store), HE-AAC, MP3 (8 to 320 Kbps), MP3 VBR, Audible (formats 2, 3, 4, Audible Enhanced Audio, AAX, and AAX+), Apple Lossless, AIFF, and WAV.
    Video formats supported: H.264 video up to 1080p, 30 frames per second, High Profile level 4.1 with AAC-LC audio up to 160 Kbps, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; MPEG-4 video up to 2.5 Mbps, 640 by 480 pixels, 30 frames per second, Simple Profile with AAC-LC audio up to 160 Kbps per channel, 48kHz, stereo audio in .m4v, .mp4, and .mov file formats; Motion JPEG (M-JPEG) up to 35 Mbps, 1280 by 720 pixels, 30 frames per second, audio in ulaw, PCM stereo audio in .avi file format

  • Ipod WILL sync with Windows Media Player....not iTunes!!!!

    To no avail, my ipod is not recognized in iTunes... however it is by my computer, and my Windows Media Player will sync to it...
    I have tried to Reset, Restore, Reinstall... all of that, but nothing has worked. I have Vista, anyone have any ideas? I would much rather use iTunes, so I can download some games, and such... but I CAN work around with Windows Media Player using mp3 files... no album art

    have you ever found a solution to your problem? I would like to know, because I'm having the same issues with my Nano. If so, help me Please......

  • Problems with songs i downloaded with windows media player!!!!(zen tou

    If I try to play songs i downloaded with windows media player My zen touch(20Gb) freezes and won't shut down:angry:. I have downloaded the latest firmware so that can't be the cause of the problem.
    Can someone tell me what I can do about that.
    btw I don't have problems with songs downloaded with creative's media source
    Message Edited by Lt_chill on 07-08-2005 09:24 PM

    If you mean you subscribed to iTunes Match, you have to import your music into your iTuens library in order to add it to iTunes Match.  iTunes Match (and iCloud) only works with iOS devices and computers.  It won't work with your iPod Classic; you'll have to sync that with iTunes in order to add your music.

Maybe you are looking for

  • Updating apps no longer sold in that country

    I had purchased an app which, after several days, appeared no longer on the app store for my country. After the iOS 5 upgrade, I found out at the app has an iOS5 upgrade version which prevents crashing the app on the new iOS 5. But when I try to upgr

  • How well will Premier run on a MacBook Pro Retina i7 with only 8GB of RAM?

    My niece wants to do some video editing using Premier and we were wondering if there would be a problem running it on a MacBook Pro with i7 and retina display with only 8GB of RAM? I know 16GB would be better but that is not an option at this point.

  • Deleting or omitting Special characters in PI mapping

    Hello ,     My scenario is , SAP ECC to legacy , ie. IDOC --> XI/PI -BPM --> Legacy(XML) ,   here in Idoc we have a field which gives has a special character '§'  which I need to remove this before it goes out from PI. how to handle this , Is there a

  • Urgent help in searching XML docs

    Hi All, I have started using JDOM and created a XML document after reading the contents from a text file. Now i need to implement a search facility on this XML document. The structure of my XML document is given bellow <Company ID="C1">   <Name>aa</N

  • Not Sure How To Send String

    I'm totally new to trying to network using Java and extremely poor at networking in general so bear with me here. I'm trying to make a top down shooter and currently the application allows the user to either play as host or connect to a host but all