Itunes not reading video file

I coverted an avi to mpeg4 and I added the file to the itunes library but it won't read it. What's the problem here?

Haven't run another test feed yet but when I went to re-upload the file I can see that what was there was called:
001nov11.mp3
So is it the URL that I need to change? Not the file name itself?
(Sorry...this is a whole new world to me.)
Do I need .mp3 to appear at the end of this URL?
http://www.eringoodman.com/wp-content/uploads/audio/001nov11
And if so, can you (or someone :-) talk me through that?

Similar Messages

  • I have a problem with the mac can not read video files with the extension IMOD. How can I solve this problem?

    I have a problem with the mac can not read video files with the extension IMOD. How can I solve this problem?

    By doing a Google search. 

  • I have lost my photos/videos when i imported from my ipad 2 to my new imac latest version and it's not reading the files.  I have downloaded iMac library manager and can see them. can someone shed some light please ?

    i have lost my photos/videos when i imported from my ipad 2 to my new imac latest version OS X 10.8.4
    and it's not reading the files.  I have downloaded iMac library manager and can see them.  when i go back into iphoto i'm getting the following message :
    Do you want to switch the current iPhoto Library from “iPhoto Library.photolibrary” to “iPhoto Library.photolibrary” and relaunch iPhoto?
    I don't know what to do - please help !!!!
    can someone shed some light please ?

    So it appears you have only one library on the hard drive. Apply the two fixes below in order as needed to that library:
    Fix #1
    1 - launch iPhoto with the Command+Option keys held down and rebuild the library.
    2 - run Option #4 to rebuild the database.
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    1 - download iPhoto Library Manager and launch.
    2 - click on the Add Library button and select the library you want to add in the selection window..
    3 - Now that the library is listed in the left hand pane of iPLM, click on your library and go to the Library ➙ Rebuild Library menu option.
    4 - In the next  window name the new library and select the location you want it to be placed.
    5 - Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments.  However, books, calendars, cards and slideshows will be lost. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.

  • My iTunes can not read a file, because its created by a newer

    My iTunes can not read a file, because it's created by a newer!!!
    The file is:     iTunes Library.itl
    I hope you can help me!!
    Bye tokiodrift

    You need to restore the pre-upgrade backup of the library file in the manner shown in  Empty/corrupt library after upgrade/crash.
    tt2

  • Why does Firefox 4 not open video files (news and youtube) at all, but Firefox 3 and MSIE 8 open these video files quickly, all on my Dell Dimension 8250 desktop with MS Windows XL Pro?

    I subscribe to an Earthlink package of telephone and ISP through DSL in Dallas, Texas. To avoid the congestion (time outs and files not found) of the virtual "cloud" servers, as a workaround I connect to the Internet through dial-up on each session on my pc. There is only one pc or computer on my local network. I downloaded Firefox 4 RC and it failed (would not open video files on the Internet), so I removed the Firefox 4 RC program from my pc, and then I downloaded and installed Firefox 3.6.16, which works fine.
    My operating system is Windows XP Pro.

    Try disabling hardware acceleration. Many visual bugs can be attributed to issues with graphics drivers.
    (Firefox -> Options -> Advanced -> General -> [ ] Use hardware acceleration when available)

  • Bridge CC not displaying video files

    Bridge CC not displaying video files - I just installed the new Bridge CC and I am unable to view and play my video files.  The files are Quicktime files.  The title of the file is displayed with a QT logo, yet no video is registered.  Has any one else has had this issue or has any advice?

    This is still not working for me as I've opened another question regarding this here: .mov thumbnails not showing up for Bridge CC on Mac OS X 10.10.2?
    I can view my Quicktime .mov thumbnails in Bridge CS6 but not CC. I have all the latest Adobe CC and Mac OS X 10.10.2 and QT 10.4 updates. I've removed the media cache folder and purged my cache - every possible fix I've seen on the internets and still, no thumbnails for .mov files in Bridge CC. I've toggled the "Generate Monitor-Size Previews" and "Keep 100% Previews" to no avail. I'm working on an important video project for a client and this is the first video assignment I've worked on with CC and so far, it's not working out well.

  • HT3775 I could not open video file name with .flv

    I could not open video file name with .flv Please help to advise?

    Install Perian or use VLC.
    (86537)

  • Hi, I can not import video files into iMovie.

    I can open iMovie however can not import video files. the iMovie application just hangs and I have to force quit to start again and once again get the same problem.
    I have uninstalled and reinstalled iMovie.

    Yosemite sometimes has problems, often related to "default" permissions needing to be changed
    -one person's solution https://forums.adobe.com/thread/1689788
    -and a Java update https://forums.adobe.com/thread/1507936
    MOV is a wrapper, what is inside YOUR wrapper - Exactly what is INSIDE the video you are editing?
    Codec & Format information, with 2 links inside for you to read http://forums.adobe.com/thread/1270588
    Report back with the codec details of your file, use the programs below... A screen shot works well to SHOW people what you are doing
    https://forums.adobe.com/thread/1070933 for screen shot instructions
    Free programs to get file information for PC/Mac http://mediaarea.net/en/MediaInfo/Download

  • I need a help in reading video file of 80MB into ...

    Hello,
    I need a help in reading video file of 80MB into a vector storing ByteArrays in it.Please help me soon.
    Thank You

    Hello,
    I was able to solve my problem by thinking & my code goes as follows.I am trying to read a video file in my program.
    public Vector getFileMediaContent(RandomAccessFile fileObj){
         Runtime runtime = Runtime.getRuntime();
    System.out.println ("Free memory : inside Boolean Type Panel" + runtime.freeMemory() );
    dataContent.removeAllElements();
    System.out.println("dataContent :"+dataContent.size());
    try{
    int size=(int)fileObj.length();
    if(size<2000000){
    byte[] data = new byte[size];
    fileObj.read(data);
    dataContent.addElement(data);
    data=null;
    System.gc();
    else{
    int fixedsize=2000000;
    int startindex=0;
    int read=0;
    int remaining=0;
    while(read!=-1){
    byte[] data=new byte[fixedsize];
    read=fileObj.read(data,0,data.length);
    dataContent.addElement(data);
    startindex=startindex+data.length;
    remaining=size-startindex;
    fileObj.seek(startindex);
    data=null;
    System.gc();
    if(remaining>0 && remaining<2000000){
    byte[] data1=new byte[remaining];
    read=fileObj.read(data1,0,data1.length);
    dataContent.addElement(data1);
    data1=null;
    System.gc();
    System.out.println("outside while");
    System.out.println("dataContent 1 :"+dataContent.size());
    System.out.println ("Free memory : inside Boolean Type Panel" + runtime.freeMemory() );
    fileObj = null;
    System.gc();
    }catch(Exception e){
    e.printStackTrace();
    return dataContent;
    Now I am not facing the problem of IndexOut of Bounds Exception But I am getting Out of Memory Error.
    Can You suggest me to come out of this,.
    As I know I have two solutions.
    1.Make the objects Null which is using more space & call System.gc();
    2.Increase the Virtual Memory of my System.
    Any solutions other than this?
    And How to Increase the Virtual Memory?Please do reply.
    ThankYou

  • I am trying to import cr2files from the camera into lightroom 5 and keep getting an error message saying Lightroom can not read the files and therefore will not import them.  Has anyone had a similar problem-.thanks

    I am trying to import cr2files from the camera into lightroom 5 and keep getting an error message saying Lightroom can not read the files and therefore will not import them.  Has anyone had a similar problem….thanks

    If you are having the same problem, i.e. a disk permission problem, open your favorite search engine and search on, "change disk permissions", and I think you'll find plenty of information on how to fix the problem. This is a Lightroom forum. Your problem is with your operating system. There is no sense in rewriting instructions that are already available if you do a simple search.

  • Ipod too slow when reading video files via DVD player with USB port.

    Hi all, this is my first message in this forum.
    I've got a DVD player that has a USB port and reads all types of disks. When I use my IPOD 80 GB the files I read are somehow frozen and don't run properly (lack of sync between audio and video, etc). I've got version 1.2.1 and use it in disk mode otherwise the player doesn’t see it. Meanwhile a friend of mine uses it's 60 Gb IPO on the same player, version 1.0 and it doesn't need to go to disk mode, and the player reads perfect from it. Is this a problem of the ipod software version?
    Both ipods are in Fat32 format, but in his ipod the partition is set to active. I can't change mine to that, because windows is seeing my IPOD as a removable device, and my friend’s IPOD as a disk.
    Hope I haven't been too confusing, and I welcome any help anyone can give.
    Thanks.

    Sorry, but I don't even know
    what it is you are trying to do. Are you attaching
    the iPod to a stand alone DVD player? Are you trying
    to export stuff out of the iPod into the DVD player?
    Patrick
    Hi, I'm attaching the iPod to a stand alone DVD player, that has a usb input port. And then read video files from it.

  • How do I stop iTunes from duplicating video files?

    For some reason unknown to me, iTunes duplicates the video files when they are added to the library.
    For music, when I add these to the library, the files stay on the external drive, and they are listed in the library.
    However, I now moved my video files to an extrnal drive, but when I want to add them back into my library, it wants to copy all of them (the full file) from the external drive to my itunes folder.  I moved them off of the computer hard drive because they take up too much space.  I don't want them here, but I do want them in the library so I can select and sync them.
    How do I add these videos to my itunes library, but keep the actual files on the extrnal drive?

    Turn off the option "Copy to iTunes Media folder when adding to library" under Edit > Preferences > Advanced.
    tt2

  • ERROR:Could not read archive file - during Processing Base System Part 2

    Hi there,
    What I have:
    * I have problem with installation of the Mac OS X Panther v10.3 on iMac.
    * I have 3 original CDs (black with silver X).
    What I did:
    * I made new 1 partition and formated disk as Mac OS Extended (Journaled) over the Disk Utility in the first CD as normal without additional options (if I tried to format disk with zero all data and 8 way random write format after 3 days computer freeze)
    * I verified disk over this utility - that was ok - HFS volume verifed.
    * Then I restarted the computer and ran installation from this first CD
    What happened:
    * installation did not finish, because there were some problems during installation process.
    * i tried to customize installation just for essential work (without other languages support, printers etc), but it was still the same problem
    Installation log:
    After I choosed installation type, there was first error, but it did not look like important.. - root: bootstraplookup(): unknown error code
    Checking your installation disk - OK
    Preparing disk - OK
    Preparing base 1 and 2 - OK
    Other preparing.. - OK
    Processing Base System Part 1 - OK
    Processing Base System Part 2
    ==
    ERROR:Could not read archive file. - pax: Invalid header, starting valid header search.
    ERROR:Could not read archive file. - pax: Invalid header, starting valid header search.
    last message repeated 2 times
    ERROR:Could not write file. - pax: WARNING! These patterns were not matched:
    Some files for Essentials may not have been writen correctly.
    root: Installer[108] Exception raised during posting of notification. Ignored. exception: Some files for Essentials may not have been written correctly. (code 1)
    Install Failed
    Error detected
    Name: NSGenericException
    Reason: Some files for Essentials may not nave been written correctly. (code 1)
    ==
    It seems like a problem with reading some data from the CD, but during the installation checking of disk was ok.. maybe it can be problem with the cd-rom..? Or problem with data on cd-rom - I mean bad archive file..? But it is original CD.. What do you think??
    Thank you!

    Tomas,
    On THIS Page, locate your iMac model.
    From the Documents column, click on the appropriate number link.
    Using the info in the document that opens, locate the serial number of your iMac.
    On THIS Page, in the text field for Search Tech Specs, enter that serial number.
    Click on the model of iMac that appears.
    Post a link to the page that opens, or post the info requested below.
    Exactly which model iMac is it?
    What is the Processor speed?
    What size is the Hard Drive?
    How much Memory is installed?
    What type of internal Optical Drive does it have?
    Which version of OS, was the original Installed Software?
    ali b

  • Adobe 11 will not read my files.

    I have downloaded Adobe 11 several times, with and without the anti-virus set, and though it recognises my files Microsoft reports it had 'encountered a problem and is closing it down' when I try to open them.  When I restore the system to Adobe 9 it opens my old files but, obviously, not those in '11' format.  Any ideas?

    Well, it's like this.  Someone sends me some printed  information.  A bill.
    A report ,  It downloads.  I try  to open it and it tells me I need Adobe
    Reader 11 to do so and gives me a  link.  .  I download from the link.  It
    takes an age but in the  end it tells me I have successfully downloaded Adobe
    Reader 11. When I try to  open the file Microsoft tells me they have
    encountered a problem and are closing  it down.  When I try to open any of my
    saved Adobe Reader files I then  get the same message.  I have to use System
    Restore to get the facility of  Adobe Reader 9  back.  Then it opens my saved
    files again.
    In a message dated 04/11/2012 02:36:32 GMT Standard Time, 
    [email protected] writes:
    Re:  Adobe 11 will not read my files.
    created by Pat Willener (http://forums.adobe.com/people/pwillener)  in 
    Adobe Reader - View the full  discussion
    (http://forums.adobe.com/message/4821557#4821557)

  • Illustrator files cannot be opened: Could not read the file because an error has occurred.

    I cannot open some files from  Illustrator which contain PNG files placed. When I try to open the file, I get a message saying: "this png contains addtional data for Adobe fireworks, which will be discarded upon save." When I press "ok" I get the same screen again. When I press "cancel" I get: "coulld not read the file because an error has occured". I am currently working on a Mac Mavericks. Using Illustrator cc and Fireworks CS6.

    Eliana,
    If you have some file corruption, one thing often tried first is to create a new document and File>Place the (PDF contents, if any of the) corrupted one to see how much may be rescued that way.
    Here are some websites where you can see whether it can rescue the actual file, and if it can, you may pay for a subscription to have it done,
    http://www.recoverytoolbox.com/buy_illustrator.html
    http://markzware.com/adobe-software/fix-illustrator-file-unknown-error-occurred-pdf2dtp-fi le-recovery/
    http://www.illustrator.fixtoolbox.com/
    As far as I remember, the first one is for Win and the second one is for Mac, while the third one should be for both.
    Here are a few pages about struggling with it yourself:
    http://daxxter.wordpress.com/2009/04/16/how-to-recover-a-corrupted-illustrator-ai-file/
    http://helpx.adobe.com/illustrator/kb/troubleshoot-damaged-illustrator-files.html
    http://kb2.adobe.com/cps/500/cpsid_50032.html
    http://kb2.adobe.com/cps/500/cpsid_50031.html
    http://helpx.adobe.com/illustrator/kb/enable-content-recovery-mode-illustrator.html

Maybe you are looking for

  • Been trying to fix spinning wheel for over a week HELP!

    My Snow Leopard IMac has been stuck in spinning wheel mode forever    I have used utility to verify permission and to repair disk but no matter what each time I start the computer I get a message that Firefox hasn't logged out because there is a scri

  • SQL Replace Function

    I have a small software to generate Letters. This is integrated with the Sales module. Both Sales and Letter modules are developed using Oracle10g. In the Letters module user can write his/her own letter and if we want to add some information from th

  • Regarding  dimension creation

    Hi, When I am creating a dimension it gives the default attributes like ID-- surrogate Identifier Name-- Business Identifier Description Business Identifier I have to create a dimension. My dimension does not have these attributes.(ID,Name,Descriptio

  • WHERE TO DOWNLOAD 9.0

    Hi- We need 9.0 to use legacy software. I can't find where to download it. Otherwise, how can 9.0 be obtained? Thanks

  • Are there any iPhone 4 Apps for viewing Numbers Documents?

    I'm wondering if there is any apps for the iPhone 4 which will allow me to view/read Apple Numbers files/documents? I have one for the iPad but was wondering if there is something similar for the iPhone... Thanks in advance...