Importing music and video through command line

I can't seem to get the following to work at the DOS prompt (W2000)-
C:\"Program Files"\iTunes\iTunes.exe "C:\TEMP_MEDIA"
I am running iTunes 7.0.2.16. iTunes launches with the above, but the files are not imported into iTunes from the directory. There is no error message of any sort. The file just doesn't get transfered. (I have no problem when I use the Import menu option in the iTunes gui.) Is there some setting that is disabling this? I tried it both with and without setting the "Play on import" option-- same result, nada.
If there is some other way to automate importing the contents of a folder or even specific files explicitly named I would be grateful to hear about it. Here is the context of mny question. I want to distribute files using an Installer that copies them to a specific folder and then uses an "EXEC" command to invoke iTunes to do an import. I cannot assume anything about the end user's environment other than it's Windows 2000 or later, with iTunes 7 or later. The end user cannot be asked to enable ActiveX controls of any sort, install special plugins, or the like. That's why this option I am trying seems like what I need... but it just doesn't want to work for some reason!
All help most appreciated!
Alan
  Windows 2000   iTunes 7.0.2

All,
This was solved. I had forgotten to put the file in the ip/install folder.
Regards,
Suhas.

Similar Messages

  • NOT ABLE TO IMPORT MUSIC AND VIDEO FILES FROM IPOD TO COMPUTER/ITUNES LIBRARY !!!!

    Hi.... I am having IPod Nano 5th Generation. I can access music and video files (that are stored in Ipod memory) in Ipod. But when I connect the ipod to computer, I am not able to access/import these music and video files through computer. Also, I am not able to see any folders like DCIM, Contacts, etc... in the memory of IPod. Can any body help me out... ?

    Search it up on google.com.  There's a lot of apps that will help you do this.  Check out this one:
    http://www.imtoo.com/ipod-computer-transfer.html
    You can also check out this video:
    http://www.youtube.com/watch?v=dWvYo6Gcq44
    I tried the import software (trial version) and it was fine but I didn't want to pay for software.  You can authorize up to 5 computers in the house to access your iTunes music and other iTunes purchases. Open iTunes, you can go under Store and select Authoize this computer.
    Good luck!

  • HT1849 how to import music and video from windows media player

    I want to import my music and videos from the windows media player, and I want to import or put it all in my itunes library. How do I do that. I know there is a button.
    Am I missing it? Can someone help me please. I am working off of a laptop. If that helps anything.

    In Media Player music list, make sure the "Protected" column is displaying. Sort by that column. Any songs that are protected can not be converted to iTunes. You will have to re-rip the CD with the WMP setting to be to not protect the songs.
    I had the same problem with album covers and could never fix it. I just gave up. I spoke with people at Apple stores and nothing they suggested worked.

  • Importing music and videos from itu

    Hi,I just recently threw in the towel with the ipod after I went though 5 of them in under 2 years. So I decided to switch to the Creative Zen vision M, and I was wondering if anyone knew if there was a way I could get the songs and music videos that I?had downloaded off of itunes and put them on my zen. Any help would be great!

    I lost artwork also, what I did is completely delete the library to the garbage and then readd the Itunes music folder back to Itunes and then all the artwork came back. The only artwork that Itunes can find automatically on it's own is if it carries that particular album in it's store. If it doesn't carry the album or MP3 that you may have purchased from another online store you'll have to manually go somewhere on the internet and manually add the artwork yourself. Itunes only automatically finds artwork regardless whether you purchased it from Itunes store or elsewhere only if the Itunes store carries that particular album.
    Message was edited by: abombaci
    Message was edited by: abombaci
    Message was edited by: abombaci

  • How to block IP addresses or IP blocks through the 5505 ASDM interface, not through command lines?

    Is it possible to block IP addresses or IP blocks through the 5505 ASDM interface, and not through command lines? If so, how?

    Unfortunately I can't share any information on the router. It's company policy. But, if you could let me know where in the GUI interface of the router where I can find the ACL and how to enter the IPs to block I would really appreciate it.

  • Can't add music my iPhone from iTunes.  When I try to drag a song over to my phone, I get the circle w/ the syncing line through it, but it does not update/load.  [Manually manage music and videos] is checked. And, this is the only Mac I have ever used to

    Can't add music my iPhone from iTunes.
    When I try to drag a song over to my phone, I get the circle w/ the syncing line through it, but it does not update/load.
    [Manually manage music and videos] is checked. And, this is the only Mac I have ever used to add music to my phone.
    Also, just updated the phone's software today, and iTunes' software is already up to date.

    Hi Gregg,
    Have you tried resetting the device (nothing will be lost): Hold down the Home and Power buttons at the same time and continue to hold them down until the Apple appears (up to 30 seconds). Once the Home screen redisplays, see if your Music app is behaving normally.
    Cheers,
    GB

  • How to import missing content for my music and video files from Itune online

    how to import missing content for my music and video files from I tune online.

    Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Enable disk use and Manually manage music and videos

    When I go to Summary, Enable disk use is checked but dim, so I can't change it. Manually manage music and videos is checked and not dim. Is this enough to do so that I can manage the videos I have shot on my Nano from iTunes, or do I have to do it from iPhoto?

    Hello JohnKerr48,
    I can manage the videos I have shot on my Nano from iTunes, or do I have to do it from iPhoto?
    You have to manage them via a Finder window, through iMovie, or iPhoto. They cannot be managed via iTunes unless you copy them from your Nano onto your Mac and then import them into your iTunes library. For more information, see this Apple support document.
    http://support.apple.com/kb/HT3822
    B-rock

  • Cannot add music and  video

    My Iphone is updated to I tunes, but when I click and drag my music and videos to my iphone I get a circle with a line through it and I cannot add any music or video to my phone?

    is manually manage music check
    also try adding music and videos by standard sync'ing

  • [SOLVED] How to Crop an MP4 Video via Command-line?

    I have ffmpeg, mpg123, and mencoder. Does anyone know of a way I could use any of those to crop an mp4 video via command-line? I am trying to take off the black space above and below a video. Thanks in advance!
    Last edited by tony5429 (2009-04-12 00:12:57)

    I don't think it's possible to crop without re-encoding, but you can crop from the command line with ffmpeg and mencoder. Not sure about mpg123 - I think that's for playing audio but I could be wrong there.
    Anyway, with ffmpeg you can do cropping by using -croptop, -cropbottom, -cropleft, and -cropright. So if you wanted to crop 16 pixels off of the top and the bottom, your command line would look something like this:
    ffmpeg -i <input file> -croptop 16 -cropbottom 16 <video encoding options> <audio encoding options> <output file>
    With mencoder you use the "crop" video filter, like this:
    mencoder <input file> -o <output file> -vf crop=320:208:0:16 <other options>
    where the "320:208:0:16" means that the resulting picture is 320 pixels wide, 208 pixels high, and the 0:16 is the x,y position of the cropped area.
    These command lines are just really very basic examples - ffmpeg and mencoder have a LOT of options. Way too many to explain here. If you don't believe me, just try reading through the mencoder man page sometime. (There's an online version of it at: http://www.mplayerhq.hu/DOCS/man/en/mplayer.1.html)
    Hope this helps!!

  • Downloading music and videos from more than one iTunes account

    We have ipads for our two granddaughters and each has an itunes account and we give them allowances and gifts now and then to buy videos music and apps.
    They have each bought more stuff than they can fit on their ipad.  I bought an external hard drive from Seagate to which I can store their music and videos. They can access this drive and the content on it through a LAN the drive sets up so their ipads can communicate with it when they are away from a network and have no access to iCloud.
    When I logged into one of their accounts to download content, I got a message that said my computer was registered to a specific itunes account and that if I downloaded content from another account I would not be able to download any content from any other account for 90 days.
    What gives.  This would mean if one of them downloaded their content, the other wouldn't be able to download anything for 90 days and vice versa.  This makes no sense.
    What am I doing wrong and how do I deal with this situation?
    I spoke with an Applecare person about this and they said yeah, this is the way it is set up.  I asked "Why?" because it didn't make any sense and they tried to put me through to an iTunes "specialist" to explain it.  I got the "specialist" but he had no idea what I was talking about and went to find out what was going on.  He took so long to try to find out that I ended up losing the connection.  Thought I would ask this forum.
    Can anyone help me.  This is a major glitch I don't know how to deal with.
    Thanks,
    --Kenoli

    Julian
    I am a bit confused and have heard different things from different second tier Apple support folks.
    When you and your wife do as you describe are you actually downloading your content to your computer or just accessing it from Apple's servers via your iTunes software? 
    What I am trying to do is to download it from the server to my computer.  You do this from within the iTunes store by clicking in the little iClound icon next to the item or telling the store to download all of it.
    When I do this from one account, I am locked out of doing it from any other account for 90 days.
    I'm looking forward to your account as I have Apple "experts" seem pretty much split 50-50 as to whether this is supposed to happen.  So far, my experience is that on a given computer, no matter how many user accounts you have, if you download content from an iTunes account, content cannot be downloaded on that computer frm any other iTunes account for 90 days.
    This, of course is not a problem if you are logged onto the internet.  However, if you are not logged onto the internet, you cannot listen to any music you have not downloaded.
    It is the second condition for my two grandaughters that I am trying to address.
    Thanks,
    --Kenoli

  • Sharing music and videos but not mobile apps btw 2 accts on same Mac

    My wife and I each have accounts on our Mac. When we sync our iPhones, I want each of us to be able to sync our own music and video playlists (from a common repository) but *keep our iPhone apps separate*. We are kind of doing it now, but I'm not quite sure how (or why) it's working. I made a network share on a NAS box for our iTunes libraries and also a Shared library supposedly for Music.
    Can anyone outline a definitive way of organizing the folders in the finder and through iTunes? No speculation please: it's too hard to go back.
    Thanks in advance

    Hmm... this is a bit technical,
    Try posting in the iTunes Match forum, you'll probably find more knowledgeable folks there.
    https://discussions.apple.com/community/itunes/itunes_match

  • When trying to manually manage my music and videos on itunes its telling me that im already signed up to one itunes library and if i apply these setings it will replace my current itunes library. is this safe and would i be able too retrieve my deleted mu

    when trying to manually manage my music and videos on itunes its telling me i am already connected to another itunes library and that if i apply these settings it will delete all of my data and replace it with the current itunes library. will this just delete from the i tunes library or from my i tunes account all together?

    Thanks for your reply. I don't keep all of my music in the iTunes' designated music folder. I don't like the way iTunes reorganizes my songs and I keep all my music in my own self organized music folders as I don't use iTunes as my primary media application. Not to mention allot of my files come from all different corners of my computer's hard drive. It would literally take months to go through over 20 gigs of media files to pick out the songs I have in my iPhone library to rebuild an iTunes library. Like i said, I don't even use iTunes other than to transfer files to my iPhone. I thought the purpose of manually managing the files was so you don't have to sync it with the iTunes library but now it won't give my that option without requiring me to delete everything on my phone I worked so hard on.
    What I don't understand is logically or technically why iTunes HAS to delete all the content off of my iphone. Who's decision in the Apple's software engineering department was to require the one's iPhone to be erased if someone loses their iTunes library? Its frustrating because it makes no sense and I feel as if the software is punishing me for reasons I don't understand by threatening to delete all my content off my phone. Is there absolutely no way to transfer my music to my iPhone without deleting everything currently on and completely rebuilding my music library from scratch?

  • Trouble with loading videos - Manually manage music and videos not supported now with iOS5 and a 1st gen iPad?

    Since updating my iPad 1st gen to iOS5.0.1 videos don't get loaded properly into the Videos app.
    On the Summary page in iTunes of my docked iPad, I have always checked the box for "Manually manage music and videos".
    I have my reasons for doing it this way, but that's for another thread perhaps.
    The problem is that when I load a video to my iPad this way - by simply just dragging it from the desktop and onto the iPad, under Devices in iTunes - it copies/updates, and shows up on the iPad like it always has before iOS5. But now, with iOS5, when I undock, it can't be found anywhere within the Videos app on the iPad. The only way I can find it is to do a Search, which seems to find it, but when I click it, a different video plays - the first video in the Movies list in the Video app. Dock the iPad again, yes the video is there, according to iTunes, but no way to play it once iPad is undocked.
    My suspicion is that with iOS5 you are no longer able to use the "Manually manage music and videos (Mmm&v)" that you will be forced to run everything through iTunes - and probably iCloud. I've unchecked the Mmm&v box, and get prompted with "Are you sure? - All existing content on the iPad will be replaced with content from your iTunes library". READ - "Rebuild your entire video and music collection, and this time run it all through iTunes. Welcome to iOS5. Have a nice day or two wasting your time rebuilding your entire video and music collection. Don't fight it. Use iTunes for everything! Until we finally make iTunes a decent piece of digital media management software, then you'll have to do it all again."
    Okay, rant over - Anyone out there with running iOS5 on a 1st gen iPad with the Mmm&v option checked and able to load a video manually (not through iTunes)? Any other thoughts?
    Thanks

    Yea, i managed to fix my issue in a wild fashion way But I DONT suggest it to anyone.
    I like to hear why it happened after upgrading iTunes and if there is any peaceful solution.
    Bythe way, here is how i fixed it :
    1-i checked "manually manage music and videos" checkbox and clicked on "Sync" button
    2-It showed a threating message that it will erase my music and videos ,......
    3-I clicked on OK button and let iTunes do any thing she said , but the second it started to delete my treasures from my iphone, i disconnected my phone by pulling USB cable.
    Now i have my musics and videos untouched and got that Option enabled again and i can manage my Music/Videos and Books manually.

  • Unable to manually manage music and videos on iPhone 4 without erase and sync, same computer!

    Ok, so I know you all have heard this before but I do believe my case is rather unique, and quite frustrating.
    I purchased an iPhone 4 and synced it to the same computer I am using now - created the playlist and used it to sync with phone. Worked great for awhile; but one day I contracted some nasty malware and had to wipe my computer and reinstall my OS (Windows 7). Albeit my music library was on my external HDD which survived the onslaught. I obviously had to reinstall iTunes afterwards. The playlist was gone on reinstall.
    Afterwards I still didn't see an issue with my iPhone and iTunes: When I plug it in it syncs, everything seems to be working accordingly.
    But I recently transferred some new music from a CD to my iTunes and wanted to throw those songs on my iPhone, the drag and drop method I was so very used to did not work and I noticed that "manually manage music and videos" was uncheck under my devices summary.
    When I attempt to check this option in iTunes it gives me a popup notification telling me I need to erase and sync in order to use this option because my 'iPhone is synced with another library". Again, I DID have to reinstall iTunes after reinstalling my OS.
    I have tried all the tricks that google could supply me with with no avail; authorizing, stopping the sync from automatically starting.... yada yada - none of these cookie cutter methods have worked for me.
    Here's a too long didn't read:
    >iPhone 4 was working fine - used playlist to sync with.
    >Had to reinstall OS (Windows 7) Playlist gone.
    >Reinstall iTunes.
    >iPhone still syncs with library, no error messages on connect.
    >Unable to manually manage music and videos without erase and sync.
    >None of the usual methods work.

    Hmm, I will say after posting this and looking at the related threads it seems I can only either use manually manage or sync.
    I was using sync before but since the playlist disappeared I was syncing with I simply want to add music to my phone without deleting everything. Is this possible?
    If I use "manually manage music and videos" will it delete everything or just the music and videos? It doesn't specify...
    Could I just create a new playlist and sync it with that? If so how?
    The bottom line is it isn't that big of a deal if I need to simply rebuild my iPhone music library but losing my configuration, contacts etc is not an option. Optimally I would just like to be able to add my new music to my iPhone without having to rebuild my library.

Maybe you are looking for

  • Inter - company Billing - Assign Organisational units by plant

    Hi Experts Im posting this since I found the same question closed, unanswered. We are on IS - Retail and I have done all configuration for Inter-company Billing. However when I create the inter-company billing document I get the following error, "Sal

  • Cancel reconciliation did not work

    A user cancelled a reconciliation by this method: Banking > Bank statements and external reconciliations > Manage previous reconciliations> Select reconciliation > Click on Cancel reconciliation. This should cancel the reconciliation and you do not s

  • DirectAccess - IPHTTPS Tunnel with native IPv6 client

    I observed that in a DirectAccess KerbProxy scenario, a Windows 8.1 DirectAccess client with native IPv6 Internet connectivity is still using the IP-HTTPS transition technology for connecting to a Windows 2012R2 DirectAccess server also with native I

  • Library's empty?!say it aint so.say it aint so...

    first of all-you guys all rock for coming in here and helping out.what would we do with out you! now for the dilemna....ive looked in the articles and help sections,tried a few things but im scared to go any further in fear that i may have lost my mu

  • Call from address book

    Hi, everyone. I am developing some bb application which needs to catch and handle the number user called. When I tried to make a international call with "011" in front of the country code and number from address book(I saved the thole sequence as an