Generic error

i keep getting add media fail, the importer reported a generic error when i tryed inporting a song i paid for on itunes is there any way to fix this??

iTunes music includes digital rights management software that will keep you from  using it in a video project. (That's why most people buy music for use in videos from Amazon.com, which doesn't have this DRM software.)
To get around this, you will need to burn your iTunes music to a CD and then rip it back to your computer. I also recommend converting the file to a WAV for best performance.

Similar Messages

  • A generic error occurred in GDI+ while assing tiff image file to Bitmap and Image

    Hi,
    I am getting "A generic error occurred in GDI+" error while reading the tiff image file to Bitmap or Image.
    Below is my sample code.
    string filePath=@"c:\Images\sample.tif";
    Bitmap bmp=new Bitmap(filePath);   // here getting exception
    int totalpages=bmp.GetFrameCount(.....);
    etc......
    I tried using Bitmap.FromFile() and also from FromStream() even for Image also but there is no use.
    Moreover i m having full permissions for the file path and the tiff file is having multiple pages.
    Can anyone help me to solve this issue please.
    Thanks & Regards,
    Kishore
    Kishore

    Make sure that the Tif file is valid (can other software open it)?  If you are able to save a Tif using GDI+, try saving that Tif, then opening it.  Part of me wonders if there is something about that specific Tif that GDI+ doesn't like.
    You could also try using WIC to open the TIF, perhaps you would have better luck there.

  • Can't find printer connected by ethernet through airport extreme.  All I get is a generic error message - I'm using printer IP address as address.

    Old imac using snow leopard printed just fine to Ricoh cl2000n printer that is connected to airport extreme via ethernet (as was the imac). New iMac with Lion otherwise same cable configuration and the computer cannot find the printer.  It searchs and spits out a generic error message.  Any suggestions?  Thanks!

    Is your printer listed?
    http://support.apple.com/kb/HT3669
    If not then you need to get the driver and install it.
    Otherwise you may want to reset the printing system.
    http://support.apple.com/kb/ht1341

  • When I try and add a video from my iPhone it fails to load with a generic error. How do I fix this?

    I have been trying unsuccessfully to get a video from my iPhone to load.  It plays just fine on windows media player, but every one I try and add on Adobe gives me the same "Add media failure.  The importer reported a generic error."  what do I do to fix this.?

    Here is more information on problems some people have had trying to edit iphone video
    http://forums.adobe.com/thread/881246
    http://forums.adobe.com/thread/1011411?tstart=0
    http://forums.adobe.com/thread/934466

  • When I open itunes to play content I've already purchased and while attempting to view trailers for movies in the itunes store, I receive a generic error message from windows, and I'm directed to reinstall the latest version of itunes.  Not a fix.  Help?

    When I open itunes to play content I've already purchased and while attempting to view trailers for movies in the itunes store, I receive a generic error message from windows, and I'm directed to reinstall the latest version of itunes.  Not a fix.  Help?

    after perusing other subjects with playback issues: 
    this is the fix: 
    -Launch Control Panel - Double click Quicktime, If you do not see quicktime, look on the top left side of control panel and switch to classic view. This will then allow you to see Quicktime.
    -Now click the advanced tab and click on Safe Mode GDI Only, Apply, then ok.

  • GDI+ Generic Error, multple frame tiff, multiple image formats

    This is a question I posted on stack exchange, but have not gotten any answers.  This is occurring on Windows Server 2008 R2 systems.
    I have seen many issues involving the GDI+ Generic Error, but I have not seen this particular matter raised before. We are consistently getting the error, on Windows systems other than Windows 8, when attempting to read (System.Drawing.Image.SelectActiveFrame)
    a multiple-frame tiff that includes frames in mixed Photometric Interpretation formats. That is to say, the file includes both RGB color and min-is-white formats, with corresponding differences in the Bits/Sample and Samples/Pixel frame parameters. The error
    is consistently raising as soon as a frame is encountered with a format that is different from that of the first frame.
    // Convert File from .tiff to .PDF
    static void ConvertFile(string file, string pdffilename)
    string localMessage = string.Empty;
    try
    //if it's a PDF Just renamed it and continue
    if (file.ToLower().Contains(".pdf"))
    File.Copy(file, pdffilename);
    return;
    // If file exists return
    if (File.Exists(pdffilename)) { return; }
    using (var stream = new FileStream(pdffilename, FileMode.Create))
    localMessage = "01";
    var document = new iTextSharp.text.Document();
    localMessage = "01";
    var writer = iTextSharp.text.pdf.PdfWriter.GetInstance(document, stream);
    localMessage = "02";
    var bm = Bitmap.FromFile(file);
    localMessage = "03";
    var total = bm.GetFrameCount(FrameDimension.Page);
    localMessage = "04";
    document.Open();
    //iTextSharp.text.pdf.PdfContentByte cb = writer.DirectContent;
    localMessage = "05";
    iTextSharp.text.Image img = null;
    for (var currentframe = 0; currentframe < total; ++currentframe)
    localMessage = "06=>" + currentframe.ToString();
    bm.SelectActiveFrame(FrameDimension.Page, currentframe);
    localMessage = "07=>" + currentframe.ToString();
    img = iTextSharp.text.Image.GetInstance(bm, ImageFormat.Bmp);
    localMessage = "08=>" + currentframe.ToString();
    img.ScalePercent(72f / img.DpiX * 100);
    localMessage = "09=>" + currentframe.ToString();
    img.SetAbsolutePosition(0, 0);
    localMessage = "10=>" + currentframe.ToString();
    iTextSharp.text.Rectangle pageRect = new iTextSharp.text.Rectangle(0, 0, img.ScaledWidth, img.ScaledHeight);
    localMessage = "11=>" + currentframe.ToString();
    document.SetPageSize(pageRect);
    localMessage = "12=>" + currentframe.ToString();
    document.NewPage();
    localMessage = "13=>" + currentframe.ToString();
    document.Add(img);
    localMessage = "14";
    bm.Dispose();
    localMessage = "15";
    document.Close();
    localMessage = "16";
    stream.Close();
    catch (Exception exception)
    string msg = exception.Message + "\r\n" +
    "Coversion Error--\r\n" +
    "\tinput file name: " + file + "\r\n" +
    "\toutput file name: " + pdffilename + "\r\n" +
    "\tlocal message" + localMessage + "\r\n";
    Console.WriteLine(msg);
    SaveError(msg);
    throw;
    The "local message" is always "06=>n", where n is the 0-based index of the frame that transitions to a new format.
    The error occurs whether the transition is from black and white to color, or color to black and white.  The issue does not seem to occur on Windows 8 boxes, but we only have W8 developer PCs, not servers.  It is a production process and needs to
    be deployed on a server.
    Does anyone know why this is happening or how to fix it?

    Hi,
    For the GDI related issue, i think you may ask in the following forums:
    http://forums.asp.net/150.aspx/1?System+Drawing+GDI+
    Thanks for your understanding.
    Regards.
    Vivian Wang

  • ExternalException was unhandled : A generic error occurred in GDI+.

    I am try to save this bitmap as jpg file for every 5 sec. It works fine at another application, before I move this method to another app. The error message shows ExternalException was unhandled : A generic error occurred in GDI+. I do not know if
    it is write permission issure or anything else. Since I use same computer and try to save at same file path, the error message keep going. I think I need help.
    The error code:
    public void captureScreen()
    bmpScreenshot = new Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
    Debug.WriteLine("width:{0}, height:{1}", Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
    gfxScreenshot = Graphics.FromImage(bmpScreenshot);
    gfxScreenshot.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y, 0, 0, Screen.PrimaryScreen.Bounds.Size, CopyPixelOperation.SourceCopy);
    //Save the screenshot to the specified path that the user has chosen
    i++;
    string i1 = Convert.ToString(i);
    string name = "good" + i1 + ".jpg";
    ImageCodecInfo jpg = GetEncoder(ImageFormat.Jpeg);
    System.Drawing.Imaging.Encoder myEncoder = System.Drawing.Imaging.Encoder.Quality;
    EncoderParameters myEncoderParameters = new EncoderParameters(1);
    EncoderParameter myEncoderParameter = new EncoderParameter(myEncoder,
    50L);
    myEncoderParameters.Param[0] = myEncoderParameter;
    bmpScreenshot.Save(name, jpg,
    myEncoderParameters);
    Bitmap bitmap = new Bitmap(name);
    System.Drawing.Image image = (System.Drawing.Image)bitmap;
    The error shows here:
    bmpScreenshot.Save(name, jpg,
    myEncoderParameters);
    And Only alow me save one jpg, then pop up error

    Hi
    Since I can't reproduce your issue with some
    undefined code.
    Just take a look at from
    Graphics.FromImage Method
      in MSDN  document.
    You should always call the Dispose method to release the
    Graphics and related resources created by the
    FromImage method.  Please try and test it again.
    If still can't resolve, please post the complete code.  Thanks.
    Have a nice day!
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • SSRS 2012 SP2 - Windows 2008R2 - Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: A generic error occurred in GDI+

    Hi,
    I have built new SQL 2012 SSRS SP2 with Windows 2008R2 and BAR reports are not showing (just "x" mark in the left corner).
    Following is the log file information. I have gone through other forums and all are with windows 8 or windows 2012. Your help is much appreciated.
    library!ReportServer_0-15!d7c!08/13/2014-10:52:17:: i INFO: RenderForNewSession('/ProductionReporting/PlantProduction')
    reportrendering!ReportServer_0-15!d7c!08/13/2014-10:52:18:: e ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: , Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: A generic error occurred
    in GDI+. ---> System.Runtime.InteropServices.ExternalException: A generic error occurred in GDI+.
       at System.Drawing.Image.Save(Stream stream, ImageCodecInfo encoder, EncoderParameters encoderParams)
       at Microsoft.Reporting.Chart.WebForms.Chart.Save(Stream imageStream, ChartImageFormat format)
       at Microsoft.ReportingServices.OnDemandReportRendering.ChartMapper.GetImage(ImageType imageType)
       --- End of inner exception stack trace ---;
    Thanks,
    Vel
    Vel Thavasi

    Hi Vel,
    According to the error message, the issue is related to GDI+. Based on my research, it is a known issue that the GDI+ need to be updated on Windows Server 2008 R2. If we want to know what version of GDI+, we can do a file search for Gdiplus.dll.
    To fix this issue, please install the hotfix for your Windows Server 2008 R2 from the following kb:
    http://support.microsoft.com/kb/2495074
    There following thread about the similar issue is for your reference:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/50c071db-b4fc-4a2e-a9f4-e10e833c97d2/report-not-rendering-charts-in-pdf-a-generic-error-occurred-in-gdi?forum=sqlreportingservices
    If there are any other questions, please let me know freely.
    Regards,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • Report not rendering charts in pdf (A generic error occurred in GDI+)

    I've found the following exception stack trace in the Report Server log:
    ERROR: Throwing Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: , Microsoft.ReportingServices.ReportProcessing.RenderingObjectModelException: A generic error occurred in GDI+. ---> System.Runtime.InteropServices.ExternalException:
    A generic error occurred in GDI+.
       at System.Drawing.Image.Save(Stream stream, ImageCodecInfo encoder, EncoderParameters encoderParams)
       at Microsoft.Reporting.Chart.WebForms.Chart.Save(Stream imageStream, ChartImageFormat format)
       at Microsoft.ReportingServices.OnDemandReportRendering.ChartMapper.GetImage(ImageType imageType)
       --- End of inner exception stack trace ---;
    I've got no idea what this is, any help would be appreciated. I don't know what could potentially cause this, so I don't even know how to start looking for a fix.
    Other info:
    SSRS 2012 BI
    Win Server 2008 R2 (Running on Hyper-V)
    The pdf report(s) renders and is saved to the location it is meant to, but devoid of any charts. A data driven subscription controls the rendering.

    Hi,
    This is a known issue with Windows GDI+. To resolve the issue, please install the hotfix for youR Windows Server 2008 R2 from:
    http://support.microsoft.com/kb/2495074
    Regards,
    Mike Yin
    TechNet Community Support

  • Bitmap.Save 'A generic error occurred in GDI+'

    Hello All,
    I was just going to play around by generating some bitmaps programatically.
    I started off with this simple example, expecting everything to go smoothly, but have run into a strange error.
    The following code is by no means good, just something simple and complete I would expect to work:
    using System;
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Text;
    using System.Windows.Forms;
    namespace BitmapOutput
        public partial class Form1 : Form
            /// <summary>
            /// The picture i am drawing
            /// </summary>
            System.Drawing.Bitmap myBitmap;
            /// <summary>
            /// Graphics object for drawing
            /// </summary>
            System.Drawing.Graphics myGrafx;
            public Form1()
                InitializeComponent();
                this.myBitmap = new Bitmap(800, 600);
                this.myGrafx =                 System.Drawing.Graphics.FromImage(this.myBitmap);
                this.DrawPicture();
                this.ShowPicture();
                this.SavePicture();
            public void DrawPicture()
                this.myGrafx.DrawEllipse(
                    new Pen(System.Drawing.Color.AliceBlue),                 new Rectangle(0, 0, 100, 100));
            public void ShowPicture()
                this.pictureBox1.Image = this.myBitmap;
            public void SavePicture()
                this.myBitmap.Save("Output\\out.bmp" ,                    System.Drawing.Imaging.ImageFormat.Bmp );
    This runs fine until the SavePicture(...) function is called.
    I get the exception:
    "A generic error occurred in GDI+."
    at the this.myBitmap.Save(...); line.
    Most likely there is some detail that I have overlooked, and I appreciate it if anyone could point out to me what I could do to fix it.
    But, I'd like to think that this code would work, it makes sense, and requires little effort, that should be one of the goals of .net
    Any help or ideas are greatly appreciated!
    P.S. how do I use 'code' tags?

    Actually, the fix is to properly dispose of your objects in order.  This is one advantage of C#, with the using() syntax:
    // new image with transparent Alpha layer
    using (var bitmap = new Bitmap(330, 18, PixelFormat.Format32bppArgb))
    using (var graphics = Graphics.FromImage(bitmap))
    // add some anti-aliasing
    graphics.SmoothingMode = SmoothingMode.AntiAlias;
    using (var font = new Font("Arial", 14.0f, GraphicsUnit.Pixel))
    using (var brush = new SolidBrush(Color.White))
    // draw it
    graphics.DrawString(user.Email, font, brush, 0, 0);
    // setup the response
    Response.Clear();
    Response.ContentType = "image/png";
    Response.BufferOutput = true;
    // write it to the output stream
    bitmap.Save(Response.OutputStream, ImageFormat.Png);
    Response.Flush();
    Notice how I dispose (end the using) of the graphics parameter, before I save it?  You don't have to use the using() statements, just call Dispose() at the end of the scope I show above.
    I ran into this problem today on Azure (works locally in the cloud, just an Azure 1.3 thing!), and I saw the link to the blog post above.  That was a good link, as it pointed me in the direction of disposing the graphics earlier.
    But, there is no point of increasing hte memory usage of two bitmaps if you dispose of your graphics properly before saving.
    http://eduncan911.com

  • "Importer reported a generic error" message while importing ProRes 422 clip

    Hi all.  I am getting an "Importer reported a generic error" message when I try to import a ProRes 422, linear PCM clip into Premiere Pro CS6.  I have imported other ProRes 422 clips in previous projects without a problem, although those clips did not have the linear PCM codec included.  I have tried to solve the problem using advice on other forum threads.  Changing the file name did not work.  Removing underscores in the file name did not work either.  Copying the file and pasting to a different folder before re-importing did not work either.  The file DOES open in AE, but I am getting the error message without fail when I try to import into Premiere.  Any thoughts on how to remedy the situation?  FYI - I am still running version 6.0.0 of Premiere.  Thanks for your help!

    Try going to Help | Deactivate in Pr.  Close Pr.  Reboot.  Launch Pr and activate if requested.  That procedure has helped some users restore missing codecs and presets, maybe it'll help your Dynamic Link.
    Jeff

  • In Adobe premiere elements 12 it wont let me add a m4a file. It says that "the importer reported a generic error". Please help.

    please help, I need to make a video and cant get in my music.

    tuckey2012
    For background information, what computer operating system is your Premiere Elements 12 running on?
    I could ask you for a lot of details to build a troubleshooting plan. However, in this instance with .m4a file and "importer reported a generic error", I am going to cut to what I believe your workflow problem to be.
    You are working with iTunes music. To use them in Premiere Elements (any version), please convert them to .wav file in iTunes.
    To do that....
    a. Open iTunes and go to Music - File Menu/Add File To Library
    b. Edit Menu/Preferences/General and there click on Import Settings
    c. In the Import Settings dialog, go to Import Using and set for WAV Encoder.
    d. OK out of that area.
    In the Music Section/Songs, right click your import, select Create WAV Version
    Then right click the WAV Version, select Copy, and then Paste it to the computer desktop
    from where you import it into Premiere Elements 12 Expert workspace Add Media/Files and Folders/Project Assets
    from where you drag it to one of the audio tracks.
    Please let us know if that works for you.
    Thanks.
    ATR

  • Adobe Premiere Elements 12: Add Media Failure: The Importer Reported a Generic Error

    I am trying to add a MOV file to PE 12 I and keep recieving and Add Media Failure Error stating "The Importer Reported a Generic Error".  I have added other MOV files without any issue so I don't know why some MOV will work and others won't.  The only common characteristic I've found is that the MOV files that won't work are files that were recorded with my SLR camera. The location of the files I've added/tried adding are on my external hard drive.

    bunzondarun
    Try importing a few of the problematic files from a Local Disc C location like Videos and determine if problem presists. How is the external hard drive formatted, NTFS or FAT32?
    Do you have the latest version of QuickTime installed on your computer with Premiere Elements 12? And, on what computer operating system is Premiere Elements 12 running? Are you running QuickTime and Premiere Elements 12 as Run As Administrator and/or from a User Account with Administrative Privileges?
    What specifically is the video compression for the problematic files? And, what is the brand/model/settings for the camera that is recording these videos?
    More later.
    ATR

  • Why do I get "generic error" message when trying to upload a self-created, 1hr .wmv file?

    I went through the forums and made sure that any blocks or copywrites weren't triggered by the file, it's clean and can be opened using a media player and other video editing software like windows MovieMaker. I keep getting "The importer reported a generic error" message and have no idea how to proceed. Can someone please help?

    Re: Why do I get "generic error" message when trying to upload a self-created, 1hr .wmv  file?
    This ARTICLE starts with a checklist on setting up a computer to run PrE best, then goes into a series of links for tuning up one's computer and OS, and then links on troubleshooting.
    There is also a link on posting all necessary info, to help others help you.
    Without knowing much more about your system, it is impossible to say much beyond that WMV's are tough assests to work with, requiring a lot of CPU horsepower.
    Good luck,
    Hunt

  • Infrequent and generic error on cfinclude

    I'm experiencing an intractible and difficult-to-explain
    problem with a framework-level coding structure.
    My index.cfm ends with a <cfinclude> tag that brings in
    the page template. It works just fine - *most* of the time. Every
    now and then that line of code throws a very generic error that
    only reports the line number.
    The code reads: <cfinclude
    template="#PageInfo.Page.PageTemplate#">
    I assure you that the variable contains an absolutely valid
    template value. I have proven this over and over.
    Instead of attempting to explain the truly arcane and
    numerous factors that I've discovered, let me ask a simple
    question: Does anyone know why <cfinclude> would throw a
    generic error when the template most certainly exists? How can I
    address this?

    Dan -
    I catpured an error at 10:30 last night. The "type" is
    java.util.EmptyStackException.
    Although the on-screen errormsg showed one error at line 87,
    the cfcatch dump shows TWO elements under TagContext. Both are
    CFINCLUDES, as shown below.
    Is this meaningful to you?
    1 struct
    COLUMN 0
    ID CFINCLUDE
    LINE 87
    RAW_TRACE at
    cfindex2ecfm2088046539.runPage(D:\Inetpub\tas\index.cfm:87)
    TEMPLATE D:\Inetpub\tas\index.cfm
    TYPE CFML
    2 struct
    COLUMN 0
    ID CFINCLUDE
    LINE 177
    RAW_TRACE at
    cfApplication2ecfc1561683104$funcONREQUEST.runFunction(D:\Inetpub\tas\Application.cfc:177 )
    TEMPLATE D:\Inetpub\tas\Application.cfc
    TYPE CFML

  • How to create a generic error handling proxy?

    Hello,
    i have few services proxies.
    I want to create a generic error handling osb proxy which does only errorhandling.
    This proxy would be called by all my services.Now suppose my services proxies would throw any error,the control will pass to error handling block of proxy..from there i will call this generic errorhandling proxyusing a service callout or publish action.In this proxy i want to do all my error handling based on 'n' conditions.and i want to pass the message to the fault variable of services proxy..kindly suggest ways..*main challenge is passing the message to the fault variable of services proxy*

    Hi,
    For generic error handling framework or common error handling framework...create a bpel process which takes the error details payload and sends the inf/data as email to the particular receipients.
    create business process with bpel process and proxy using business service.so wen ever error occurs at stage or route or proxy level ..call error handler action in OSB.Assign error handler details to the bpel input payload.
    FOR EX:
    <soap-env:Body xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
    <com:test>
    <com:ProcessInfo>testDetails</com:ProcessInfo>
    <com:BusinessProcessName>testprocess</com:BusinessProcessName>
    <com:BusinessProcessInstanceId>{fn-bea:uuid()}</com:BusinessProcessInstanceId>
    <com:BusinessProcessStep>ReqLayer</com:BusinessProcessStep>
    <com:ErrorCode>{string($fault/ctx:errorCode)}</com:ErrorCode>
    <com:ErrorType>Technical</com:ErrorType>
    <com:StatusCode>Error</com:StatusCode>
    <com:ImplementationCode>OSB</com:ImplementationCode>
    <com:ErrorDescription>{string($fault/ctx:reason)}</com:ErrorDescription>
    <com:ErrorDateTime>{fn:current-dateTime()}</com:ErrorDateTime>
    <com:Node>{string($fault/ctx:location/ctx:node)}</com:Node>
    <com:Path>{string($fault/ctx:location/ctx:path)}</com:Path>
    </com:test>
    </soap-env:Body>
    this assign the error details values to the bpel process.

Maybe you are looking for

  • "Modifying a column with the 'Identity' pattern is not supported. Column: 'CreatedAt'.

    I am using code fist migration and second time I run the service, I got this error.  "Modifying a column with the 'Identity'pattern is not supported. Column: 'CreatedAt'.  context.Cars.AddOrUpdate(c => c.Id, new Car { Id = "60B0891B-C3CF-41A6-9BE0-BC

  • FREE Call & SMS Blocker for Curve 8900

    Is there anyone know an application for blocking unwanted call & SMS FREEWARE for Curve 8900??? like black&whitelist... but i don't want the shareware... Thanks a lot.

  • Making Wingdings work in epubs

    I have used symbols from the Wingdings font in a document I created in inDesign. When I export to pdf, the font works fine. When I export to fixed-layout epub, the symbols are replaced with another font, showing letters instead of symbols. Is there a

  • Airplay from MBP sketchy

    I have an Early 2011 MacBook Pro running Mavericks. Recently purchased an apple tv. When I airply from the mac to TV it is lagging and i get disconnected many times (usually after 2-3 mins). PLease note that i have a wifi extender on my network. WHen

  • Installing apex 3.2.1 gives upgrade error

    Installing apex 3.2.1.00.10 on windows database (previous version on database is 3.0 or earlier) using p8548651_11106_GENERIC.ZIP when I execute apxpatch.sql I get error: it issues command: execute dbms_registry.check_server_instance; and that errors