I need help getting this video into itunes and on my ipod.

i don't know if this is possible...
the band the films have a new music video "black shoes" on their website. www.the-films.com i got it on my computer and it plays as a movie in quicktime, but i can't figure out how to get it into itunes and on my ipod, if that's possible. i tried to open it in imovie and i couldn't get that to work either. any help would be awesome. thanks.

To get it into iTunes go to file-->add to library and find the file.
Try opening quicktime and open the file. Does it play there? It has to be able to play in QT otherwise iTunes will not accept it.
btabz

Similar Messages

  • Need help with moving files into Itunes and syncing

    Please help.
    I have an external hard drive with my music on it.  I created a new playlist in Itunes and did a drag and drop from my external hard drive into my newly created playlist. 
    Now that I go back and play the items I brought over, I get an error that says "original files not found" and it won't play and therefore does not seem to be syncing to the Ipod to be able to play.
    Can you please give me guidance as to what I can do without recreating all the work I had already done?
    Thanks,
    Michelle

    Is the external drive connected?
    Has the drive letter possibly changed due to being disconnected and reconnected?

  • Rookie needs help getting WMA files into itunes

    I bought a Olympus digital recorder. The files are WMA files and I cannot figure out how to get them into my itunes. Any advice?
    thanks

    Have a look at EasyWMA audio converter. You can convert the files to an iTunes friendly format and import them, in fact the program has a setting that will add the files to iTunes for you: EasyWMA

  • I took video in a format (AVCHD) 60i/60p and it does not download into iphoto. Any way to get this video into MP4 format?

    I took video in the format (AVCHD) 60i/60p and it does not download into iphoto. Any way to get this video into MP4 format so it will download?

    Do you have iPhoto 9.3 or later?  Have a look at this support article:
    Using AVCHD video with iPhoto '11

  • Please I really need help with this video problem.

    Hi!
    Please I need help with this app I am trying to make for an Android cellphone and I've been struggling with this for a couple of months.
    I have a main flash file (video player.fla) that will load external swf files. This is the main screen.When I click the Sets Anteriores button I want to open another swf file called sets.swf.The app is freezing when I click Sets Anteriores button
    Here is the code for this fla file.
    import flash.events.MouseEvent;
    preloaderBar.visible = false;
    var loader:Loader = new Loader();
    btHome.enabled = false;
    var filme : String = "";
    carregaFilme("home.swf");
    function carregaFilme(filme : String ) :void
      var reqMovie:URLRequest = new URLRequest(filme);
      loader.load(reqMovie);
      loader.contentLoaderInfo.addEventListener(Event.OPEN,comeco);
      loader.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS,progresso);
      loader.contentLoaderInfo.addEventListener(Event.COMPLETE,completo);
      palco.addChild(loader); 
    function comeco(event:Event):void
              preloaderBar.visible = true;
              preloaderBar.barra.scaleX = 0;
    function progresso(e:ProgressEvent):void
              var perc:Number = e.bytesLoaded / e.bytesTotal;
              preloaderBar.percent.text = Math.ceil(perc*100).toString();
              preloaderBar.barra.scaleX =  perc;
    function completo(e:Event):void
              preloaderBar.percent.text = '';
              preloaderBar.visible = false;
    btHome.addEventListener(MouseEvent.MOUSE_DOWN,onHomeDown);
    btHome.addEventListener(MouseEvent.MOUSE_UP,onHomeUp);
    btSets.addEventListener(MouseEvent.MOUSE_DOWN,onSetsDown);
    btSets.addEventListener(MouseEvent.MOUSE_UP,onSetsUp);
    btVivo.addEventListener(MouseEvent.MOUSE_DOWN,onVivoDown);
    btVivo.addEventListener(MouseEvent.MOUSE_UP,onVivoUp);
    btHome.addEventListener(MouseEvent.CLICK,onHomeClick);
    btSets.addEventListener(MouseEvent.CLICK,onSetsClick);
    function onSetsClick(Event : MouseEvent) : void
              if (filme != "sets.swf")
                          filme = "sets.swf";
                          carregaFilme("sets.swf");
    function onHomeClick(Event : MouseEvent) : void
              if (filme != "home.swf")
                          filme = "home.swf";
                          carregaFilme("home.swf");
    function onHomeDown(Event : MouseEvent) : void
              btHome.y += 1;
    function onHomeUp(Event : MouseEvent) : void
              btHome.y -= 1;
    function onSetsDown(Event : MouseEvent) : void
              btSets.y += 1;
    function onSetsUp(Event : MouseEvent) : void
              btSets.y -= 1;
    function onVivoDown(Event : MouseEvent) : void
              btVivo.y += 1;
    function onVivoUp(Event : MouseEvent) : void
              btVivo.y -= 1;
    Now this is the sets.fla file:
    Here is the code for sets.fla
    import flash.utils.Timer;
    import flash.events.TimerEvent;
    var video:Video;
    var nc:NetConnection;
    var ns:NetStream;
    var t : Timer = new Timer(1000,0);
    var meta:Object = new Object();
    this.addEventListener(Event.ADDED_TO_STAGE,init);
    function init(e:Event):void{
    video= new Video(320, 240);
    addChild(video);
    video.x = 80;
    video.y = 100;
    nc= new NetConnection();
    nc.connect(null);
    ns = new NetStream(nc);
    ns.addEventListener(NetStatusEvent.NET_STATUS, onStatusEvent);
    ns.bufferTime = 1;
    ns.client = meta;
    video.attachNetStream(ns);
    ns.play("http://www.djchambinho.com/videos/segundaquinta.flv");
    ns.pause();
    t.addEventListener(TimerEvent.TIMER,timeHandler);
    t.start();
    function onStatusEvent(stat:Object):void
              trace(stat.info.code);
    meta.onMetaData = function(meta:Object)
              trace(meta.duration);
    function timeHandler(event : TimerEvent) : void
      if (ns.bytesLoaded>0&&ns.bytesLoaded == ns.bytesTotal )
                ns.resume();
                t.removeEventListener(TimerEvent.TIMER,timeHandler);
                t.stop();
    The problem is when I test it on my computer it works but when I upload it to my phone it freezes when I click Sets Anteriores button.
    Please help me with this problem I dont know what else to do.
    thank you

    My first guess is you're simply generating an error. You'll always want to load this on your device in quick debugging over USB so you can see any errors you're generating.
    Outside that, if you plan on accessing anything inside the SWF you should be loading the SWF into the correct context. Relevant sample code:
    var context:LoaderContext = new LoaderContext();
    context.securityDomain = SecurityDomain.currentDomain;
    context.applicationDomain = ApplicationDomain.currentDomain;
    var urlReq:URLRequest = new URLRequest("http://www.[your_domain_here].com/library.swf");
    var ldr:Loader = new Loader();
    ldr.load(urlReq, context);
    More information:
    http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS5b3ccc516d4fbf351e63e3d118a9 b90204-7de0.html
    If you're doing this on iOS you'll need to stripped SWFs if you plan on using any coding (ABC) inside the files. You mentioned iOS so I won't get into that here, but just incase, here's info on stripping external SWFs:
    http://blogs.adobe.com/airodynamics/2013/03/08/external-hosting-of-secondary-swfs-for-air- apps-on-ios/

  • How Do I Get Home Videos into iTunes?

    I have 6 home videos that I want to put into iTunes....both the iTunes library on the hard drive and the iTunes app.  I had them in there but for some reason they got mixed up and I deleted them. I have the copies so how do I get them into the iTunes library on my hard drive and into the itunes app so I can look at them.
    It is such a mess and I'm trying to make my question as simple as possible.  Here is one thing that happens...when  I tried to put the videos into iTunes they went into a folder called Home Videos.  But there is no folder on iTunes called Home Videos....it is called Movies which is where the videos were before.  There is no place for me to access a folder called Home Videos because there isn't one.  And, If I access the old Movie Folder it is empty.  The Movie folder is permanent....put there by iTunes so I can't delete it and add add one called Home Videos. 
    Can anyone straighten out this mess?  The only good news is that I still have copies of the home videos...they were not deleted.

    Drag them into the library folder.

  • Need help identifying this video format

    A lady on the east coast made a documentary video but said that it was filled with pauses, for some reason. I told her that I'd import it into FCP and edit out the pauses for her.
    So she mailed me the DVD-R, and I tried to play it on my Mac, but DVD Player won't open it (a message appears saying "The media type is not supported.") Nor will the DVD player in a TV I have. Quicktime Player doesn't recognize it either.
    So I have to figure out how to play this thing.
    When I put the DVD-R into the Mac's optical drive, the icon of a DVD appears on the desktop. When I double-click on the icon, a window appears with a folder labeled DVD_VIDEO_RECORDER
    Inside this folder is another one labeled VIDEO_TS
    Inside that folder is a bunch of gray icons with "Exec" on them, labeled VIDEO_TS_BUP, VIDEO_TS_IFO, VIDEO_TS_VOB, and several labeled VTS_01_1.VOB, VTS_01_2.VOB., etc.
    Can anyone help me identify what format this video is in, and what sort of a player can play it?

    It's a DVD Video disc but it sounds like it was not "finalized" in the recorder that made it.
    You might be able to extract the .VOB files (the only interesting parts) with MPEG Streamclip.
    Read this: http://www.secondchairvideo.com/?p=739

  • What kind of cable do I need to get digital video into my Imac?

    I just purchased a JVC Mini DV video camera "GR-D347U" refurbished, just to get the feel of bringing digital video clips into Imovie and combining them with still clips and music. The camera came with just the AV cables and I was wondering what I need to port the video over to my Imac. There wasn't much help on their web site. They do offer a DV cable, that what I am looking for? Thanks for your help.
    Dick Skover

    Nearly all MiniDV cameras have a 4pin Firewire connector. Looking at the manual (link) for the JVC confirms that. 
    Macs all have the 6pin Firewire connector (and later iMac have 9pin connectors too) so you simply need a 4pin-to-6pin Firewire cable like this (example).
    Once connected simply load iMovie and click import.
    regards
    mrtotes

  • What cord to I need to get a video into iMovie?

    What cord do I need to get video into iMovie? I have a Canon HDV video camera, a Thunderbolt to FireWire adapter but not a cord from the camera that matches. I am using a Macbook Air.

    You need a Firewire DV cable like this one.
    Russ

  • My old PC blow and I need to get my music into Itunes on new laptop

    My old PC blow up and I want to know how to get my Ipod music on my new laptop. I down loaded the new Itunes version and used my ID but none of my stuff is there. I am afraid that if I plug in my Ipod I will loose my music.
    How do I transfer the Ipod music into my Itunes?

    Don't worry about plugging the iPod into the computer, the first time you do iTunes will say that the iPod is synced with another computer and ask if you want to erase it and sync it with this computer. Click no or its equivalent and don't worry about it.
    After that, you can use iTunes to transfer content purchased from the iTunes Store from your iPod to your new computer. It should be under the File menu.
    If you did not buy everything on your iPod at the iTunes Store, take a look here before you transfer just the purchased content, http://www.everymac.com/systems/apple/consumerelectronics/ipodfaq/transfer-copy-songs-ipod-to-computer.html or just google transfer from ipod to computer and select your OS of choice.

  • I need help getting this program to work.

    K. I don't pay much attention in my AP Comp Science Class.. but my teacher said if i can get this program to work i get an a for the semester... The program is Metrowerks Codewarrior IDE.. we are running it on windows 98 i think. She said she can't get it to compile.. so i guess it just needs to be able to input simple java programs (i.e. loops, just the regular crap) and compile them and run them...i have no clue what is wrong with it.. it could just need a patch...or we may just be going about it the wrong way...any help would be SUPER appreciated...

    K. I don't pay much attention in my AP Comp Science
    Class.. but my teacher said if i can get this programYou better did.
    to work i get an a for the semester... The program is
    Metrowerks Codewarrior IDE.. we are running it on
    windows 98 i think. She said she can't get it toAtleast be sure of the OS.
    compile.. so i guess it just needs to be able to
    input simple java programs (i.e. loops, just the
    regular crap) and compile them and run them...i have
    no clue what is wrong with it.. it could just need aEven we don't.
    patch...or we may just be going about it the wrong
    way...any help would be SUPER appreciated...Nothing in your thread really speaks of the problem. And since you mentioned homework, there's hardly anyone to be interested in that.
    Regards
    ***Annie***

  • Need help getting this code to work

    I am trying to get this code to work using "if else statment" but it will only do the first part and not do the second part in the else statement. Can anyone help me out? Here is the code:
    var R1 = this.getField("Registration Fees1");
    var R2 = this.getField("Registration Fees2");
    var R3 = this.getField("Registration Fees3");
    var R4 = this.getField("Registration Fees4");
    var R0 = 0
    if (R0 == 0)
      event.value = Math.floor(R1.value);
    else
      event.value = Math.floor(R2.value + R3.value + R4.value);
    I did notice that if I fiddled around this this part:
    if (R0 == 0)
    sometimes I can get the second part to work but not the first. I need it to do either or and this is getting frustrating.
    I might also not even need "var R0 = 0". I put that there for the condition part. If that is what is causing the problem, I can take it out. But then what would the condition be? For this form, the default is 0 and then the calculation follows by user clicking on different prices. The first part is if they want to pay for the full conference and the second part is if they want to pay for either Monday, Tuesday or Wednesday or 2 of the 3 days. Is it possible to get this to work with both parts together? I am still stuck on getting just one or the other working. Any help would be greatly appreciated. Thanks in advance.

    I have posted this on another message board and a user by the name of gkaiseril offered this solution but it hasn't worked either.
    // all four days
    var R1 = this.getField("Registration Fees1").value;
    // Monday
    var R2 = this.getField("Registration Fees2").value;
    // Tuesday
    var R3 = this.getField("Registration Fees3").value;
    // Wednesday
    var R4 = this.getField("Registration Fees4").value;
    var Fee = 0
    event.value = ''; // default value
    if (R1 != 'Off') {
      Fee = Number(R1) + Fee;
    } else {
      if(R2 != 'Off') {
         Fee = Number(Fee) + R2;
      if(R3 != 'Off') {
         Fee += Number(R3);
      if(R4 != 'Off') {
         Fee = Number(R4) + Fee;
    event.value = Fee;

  • Can't get any videos into itunes

    I have a few that were already there, but I have some new shows I have converted to Mp4 and I can't get them to import into iTunes. Any idea why they won't import?
    Jason

    I'm having the same problem. I've got 2 test videos: 1 from handbrake using the iPhone settings and the other is a quick movie recorded in iMovie and exported to iPod.
    When I try to drag them into iTunes the cursor changed to the green "+" but nothing happens. I've also tried going through File>Add to Library... with similar the same lack of result.
    iTunes is 7.4.2 freshly re-installed.
    ??

  • Need help getting this Java app to work on Mac OS X

    Aloha all,
    I am testing this new Java app that was built that is based on th Axis and Allies strategy gaming engine. On the PC the author wrote a .bat file to launch the app and the JVM. But when I try and enter the arguments on the Mac OS X via the terminal window I get the Usage/Options argument options back. The ,bat file goes as follows:
    java -Xincgc -classpath ../classes;../lib/crimson.jar;../lib/jaxp.jar games.strategy.engine.framework.GameRunner
    It looks to me as if OS X if having problems with -Xincgc argument. I checked to see if I needed to download the JVM, but according to Apple it is already built in. Is there another way to enter the arguments to get this app to launch?
    Maui Duck

    Does OS X use ';' as a separator like windows, or does it use ':' like UNIX. that might be the problem.

  • Computer Crashed,how do I get music back into itunes w/o erasing Ipod?

    My computer crashed, and I had to get a new hard drive. I was able to save all of my music on cd, and it is all still currently on my Ipod. I have downloaded Itunes again, but how do I upload all the music on my ipod into Itunes without it automatically erasing my Ipod when I plug it in? Am I able to save my play lists when I reload my music to Itunes?
    Dell PC   Windows XP  

    If you are using the iPod in manual update mode it is safe from being accidentally erased when you connect to an empty iTunes after reinstalling your operating system. However if your iPod is set to automatically update you will get a message that your iPod is linked to a different library and asking if you want to link to this one and replace all your songs etc, press *No*. Pressing "Yes" will irretrievably remove all songs from your iPod. Your iPod should appear in the iTunes source list from where you can change the update setting to manual.
    You can use a keyboard command to prevent your iPod auto-syncing with iTunes. While connecting the iPod to the computer on Windows hold down the Shift + Ctrl keys (on a Mac hold down the Option and Command (⌥ and ⌘) keys). This will stop the iPod from auto-syncing with iTunes and the iPod will appear in the source list. Wait until you are sure the iPod has mounted, and that it will not auto sync and then you can let the keys go. This may take between 20 to 30 seconds depending on your computer. Then go to Preferences>iPod and check the "Manually manage songs and playlists" box: Managing Your Songs Manually
    While you can't sync your music back from an iPod to iTunes, if you want to check this out, there is a manual method of accessing the iPod's hard drive and copying songs back to iTunes on Windows posted in this thread: MacMuse - iPod to iTunes
    If you prefer something more automated then there are a number of third party utilities that you can use to retrieve the files from an iPod, this is just a selection. Have a look at the web pages and documentation for these, they are generally quite straightforward and will copy songs and playlists.
    iPod Access Mac and Windows Versions
    YamiPod Mac and Windows Versions
    PodUtil Mac and Windows Versions
    iPodCopy Mac and Windows Versions
    PodPlayer Windows Only
    iGadget Windows Only
    Whichever of these retrieval methods you choose, keep your iPod in manual mode until you have reloaded your iTunes and you are happy with your playlists etc then it will be safe to return it auto-sync again.

Maybe you are looking for

  • Ipod Classic not showing Photos in full screen

    I have a new Ipod Classic 80gig version and have sync'd it with my windows PC. All is good other than the photos. It will display them in mini form (like a contact print) but when you click on the photo you want to look at in full size version the sc

  • PDF with Digital Signatures

    I am currently using classic asp and I need to fill out an existing pdf with data from the database.  The form also contains two signatures.  I just need to fill in the form, save it so I can email it to the  the customer.  I tried using the fdf tool

  • Paragraph Style Problem

    I have the weirdest problem that I cannot yet understand. I have a 76-page book that has at TOC plus 10 chapters. The book was created last year in ID CS3, and everything worked fine. I have updated it into CS4, and everything appeared to be working

  • How can i move photos manually in iPhoto

    how can i move photos manually in iPhoto

  • Regarding logical database PSJ

    Hi, how can we add a additional field (Activity type )to the logical database PSJ used for  transaction CN47N.The field does not exist in the given field options My requirement is currently the program RPSISVG000  display the actual hours of the acti