PSE 9 Organizer error codec trying to add an Elements audio file to slide show

I am using PSE 9 to build a slide show. When I add audio, I can use mp3's  from my music library in the slide show without any issues ...
but I am getting the following error when I try to add an Elements audio file (example " A _Taste_Of_Sicily.mp3)
This is the Organizer error message:
"Unable to add the audio file (C:\ProgramData\Adobe\ElementsOrganizer\8.0\Music\A_Taste_Of_Sicily.mp3).
The selected file cannot be played because your system does not have the required compresser/decompresser(codec) installed."
I had PSE 8 and upgraded to PSE 9 - I noticed the error file detail shows 8.0 - Is this my problem - maybe an incomplete upgrade ?  (I've made several slideshows mixing photos and music, on an older computer using PSE 8 and never ran into this issue.)
Below is my system info in case that helps:
OS=Windows 7 Home Premium 64-bit on an HP Pavillion dv7
Intel(R) Core(TM) i5-430M Dual Core processor (2.26GHz, 3MB L2 Cache) with Turbo Boost up to 2.53GHz
8GB DDR3 System Memory (2 Dimm)
500GB 7200RPM SATA Hard Drive with HP ProtectSmart Hard Drive Protection
512MB ATI Mobility Radeon(TM) HD 5470 switchable graphics
IDT High Definition Audio CODEC
Thanks for any help !

beccarie1 wrote:
This is the Organizer error message:
"Unable to add the audio file (C:\ProgramData\Adobe\ElementsOrganizer\8.0\Music\A_Taste_Of_Sicily.m p3).
The selected file cannot be played because your system does not have the required compresser/decompresser(codec) installed."
Does that file extension really have a space in it?  If so, remove the space.
Ken

Similar Messages

  • Why I cannot add audio file to slide show because of decompressor code

    I cannot add audio file to slide show because of compressor or decompressor needed in the system. Anyway to do this

      If using MP3 files it sometimes helps to delete album art from the track.
    http://kb2.adobe.com/cps/332/332125.html
     

  • Assistance needed in trying to import MP3 audio file into Slide Show

    I get the following message when trying to import an MP3 audio file into a slideshow in Organizer 9 "The selected file can not be played because your system does not have the required compressor/decompressor(codec) installed. I am pulling the file from my Itunes folder and I have not had problems with any other file I have downloaded from itunes and changed to an MP3 format.  Does anyone have any ideas?  I really want to use this song in a slideshow for my parents 50th Anniversary.

    Best GUESS is that DRM is getting in the way of the file being used outside of iTunes (DRM = Digital Rights Mgmt = Copy Protection)

  • Error while trying to add Master Data in S&OP

    Hi,
    I am getting the below error while trying to add new Master Data entries in S&OP. Can anyone help here please? I have added new items in the past, but did not get any error before.
    code: MASTER_DATA_OPERATION_EXCEPTION
    severity: INFO
    description: Error during Stage 02 of Data Integration
    log id: 08f6b26e-5981-4e21-ad65-17df697fdc62
    I have also attached the screenshot and the new data i am trying to add.
    Thanks,
    Thahir Masdook

    Hi Vivek,
    I have added Master Data in the past as well. Recently this system (Z45) was upgraded and the planning area was re-activated by my Project Lead. After the re-activation i am unable to add any Master Data and Save.
    Thanks,
    Thahir Masdook

  • ORA-20600 error while trying to add RAC database

    I'm receiving the following error while trying to add the RAC database in grid control. Any idea?.
    ORA-20600: The specified target is in the process of being deleted
    This database doesn't exists in targets. But, I'm still unable to add.

    Check the metalink Note: Unable To Add Rac Database To Grid Control Getting Error Ora-20600 [ID 1218797.1]
    You need to wait for a while and check the status.

  • I am getting an error when trying to add a caption.

    I get the following error when trying to add a caption to a photo.   "An error occurred while reading files or writing files to disc.  The disc may be full or there may be a problem with the source media."    I am running Windows 7 Pro.   The files are located on my c:.   The drive has 274 GB Free so space isn't an issue.   I have tried deleting a file and readding it to the same catalog and still the same problem.   I have copied the file to the desktop and cataloged it from there and the error went away.  
    If i check on the folder attibutes it is set to read-only but the desktop folder is as well.   If i try to remove the read only it only resets itelf to read only again.   Once i get the error another file shows up with the image name plus -edTM P-1 and it has the caption on it.  

    I was able to get it to work.  The root folder which held the pictures had a lock on it through windows 7.   Even though the drive was shared, I still had to go into the folder properties and share it with everyone.   Once i got the lock off and rebooted I was able to add captions again.

  • TS3694 Hello, I have an error while trying to add move music into my itunes library. 'The itunes library file cannot be saved. You do not have enough previledges for this operaion? help - what does this mean?

    Hello, I have an error while trying to add move music into my itunes library. 'The itunes library file cannot be saved. You do not have enough previledges for this operaion? help - what does this mean?

    Hi luxmi01,
    Here is some information and troubleshooting on the permissions issues you are seeing:
    Trouble adding music to iTunes library or importing audio CD
    http://support.apple.com/kb/ts1387
    Cheers!
    - Ari

  • Ora 12154 error when trying to add a database to VS Server Explorer

    Hi Everyone,
    I get the Ora 12154 error when trying to add a database to VS Server Explorer.
    How do I get around this problem.
    The database service is running and I can connect to the database with pl/sql.
    I can also tnsping the database and that is also ok.
    Looks like a problem with the odp.net software.
    I am running the 32 bit Oracle 11g on a Windows7 Home Premium 64 bit PC.
    I am new to this stuff so please help me step by step.
    Thanks.
    Emad

    Hi J. B.
    I have a question related to this. After you told me about the //host:1521/database alias I tried it in a VB 2008 program and it worked and returned data. At least I know that it can be used in a VB program without issues. I just now need to be able to add a connection with the Server Explorer.
    Anyway here is the VB coding I used. I'm new to this and still learning:
    Imports Oracle.DataAccess.Client ' Visual Basic ODP.NET Oracle managed provider
    Public Class Form1
    ' String to connect to the database.
    Dim strConnectionString As String = _
    "Data Source=//emad-pc:1521/emadeva;User ID=scott;Password=tiger;" '
    ' Associate the connection string with a connection object.
    Dim objOracleConnection As New OracleConnection(strConnectionString)
    ' SQL query for returning data rows.
    Dim strSqlQuery As String = _
    "Select dname, deptno " & _
    "From dept " & _
    "Where deptno = 10" '
    ' Command object to make this query work.
    Dim objOracleCommand As New OracleCommand(strSqlQuery, objOracleConnection)
    Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    ' Identify what type of command is being used.
    objOracleCommand.CommandType = CommandType.Text
    Try
    objOracleConnection.Open()
    ' Set up a Data Reader and load it with data.
    Dim objOracleDataReader As OracleDataReader = _
    objOracleCommand.ExecuteReader()
    objOracleDataReader.Read()
    ' Convert the department number to a string.
    lblDepartmentNumberFromOracle.Text = _
    CStr(objOracleDataReader.Item("deptno"))
    Catch ex As Exception
    MessageBox.Show(ex.Message, "Error")
    End Try
    End Sub
    End Class
    I still want to thank you for the help you are providing.
    Truly,
    Emad

  • Fatal error when trying to add derived table

    Hello,
    I'm new at desiging a universe. I get the following a fatal error when trying to add a derived table to my universe:
    1 processor x Family 15 Model 0 Stepping 0
    Windows 2000 Workstation  v5.1 build 2600 (S)
    Physical Total/Avail: 2.097.151 Kb / 2.004.940 Kb
    Temp directory C:\DOCUME1\xxxxxx\LOCALS1\Temp\ (1 Kb available)
    'Unknown' video card
       1280 x 768 in true color
    (doesn't make sense to me)
    I use an ODBC connection that connects to a MySQL database. When I test the connection it's fine.
    I am trying to add a derived table because it seems that my universe cannot produce LEFT OUTER JOINS.  I read somewhere that I should set my ansi92 parameter to YES instead of NO. But, everytime I re-open my universe, it sets itself automatically to NO again.
    My utlimate goal is :
    For example, list ALL the people, left join my table to their websites, but return ALL the people, even if they don't have a website.
    I dont' understand, my join should be simple enough.
    Anybody knows what could be causing all these restrictions ?
    Thanks for you help.
    Edited by: Sose Canadian on Feb 9, 2009 9:40 PM

    Hi Sose,
    In BusinessObjects (Universe) Designer, the outer join option in a join is not available and is dimmed when using a Generic ODBC connection.
    Try Following Solutions:
    Solution : 1
    When using an ODBC connection the odbc.prm must be modified on the machine where BusinessObjects Designer is used.
    Use the following steps to modify odbc.prm:
    1. Locate odbc.prm in the following folder:
    \Business Objects\Business Objects Enterprise 11\win32_x86\dataAccess\Connection Server\odbc
    2. Open odbc.prm in a text editor and modify the parameter 'EXT_JOIN' so its value is 'YES' instead of 'NO'.The outer join option is now available in BusinessObjects Designer.
    If the outer join option is still not available after following the steps above. open odbc.prm in a text editor and modify the parameter OUTERJOINS_GENERATION. Change its value from 'NO' to either 'ANSI92' or 'ODBC'.
    Solution : 2
    This can occur when user is using a non-database specific middleware such as generic ODBC. Generic ODBC allows creating a successful connection and universe, however will not allow the Outer Join option.
    The syntax for outer joins is specific to each database and the Generic ODBC driver only lets you access standard common features of all ODBC data sources.
    Ensure that you are using the database specific middleware to create the connection.
    I Hope this Helpsu2026.
    Thanksu2026.
    Pratik

  • Get the following error when trying to add a new user - Error of type eDSSchemaError (-14142) on line 1235 of /SourceCache/WorkgroupManager/WorkgroupManager-421/PMMUGMainView.mm

    Get the following error when trying to add a new user on Mac OS Server 10.5 - Error of type eDSSchemaError (-14142) on line 1235 of /SourceCache/WorkgroupManager/WorkgroupManager-421/PMMUGMainView.mm

    How come Leopard let me use the WGM in standard mode?
    While SA complains that it won't work in Standard Configuration, WGM does not. There is some fault in the logic of this for which I don't have an explanation.
    If I want to get control on Dock, selection of Home folder, config of Proxy... which I think are basic things, do I really need the advanced mode?
    If you wish to have complete control of all client settings, yes. There really is no disadvantage of using an Advanced configuration other than the learning curve.
    So if I switch to advanced mode, there is good chance I won't get this error message anymore, right?
    Yes.

  • "Shared Resources error" when trying to install Photoshop Elements 11

    I keep getting installation error "Shared Resources error" when trying to install Photoshop Elements 11 (Windows 7).  Any advice will be appreciated..

    Welcome to the forum, Ted,
    Here's an older "Shared Technologies" thread: http://forums.adobe.com/message/3155897#3155897
    But, I am not sure that we were ever able to help the OP, and they never reported back with the responses from Adobe. Still, might be a tip that is useful.
    Good luck,
    Hunt
    [Edit] I mis-spoke. The OP and another user with the same error WERE helped. What I saw initially was yet another poster, who was going to contact Adobe, but never came back to the thread. In the case of the OP and another users, the issue was caused by having Adobe Bridge, included with other Adobe programs, like Photoshop and Premiere Pro, running. When they killed that, the installation went well.
    Message was edited by: Bill Hunt

  • Error -40, trying to place in front of file-start

    Hi,
    I have the following problem:
    I bounced a caf-file (24/44.1) and it has a size of 3.5GB.
    I can listen to the file from the finder but when I try to import it into a logic project I get the following error message and the file won't import:
    Error -40, trying to place in front of file-start (translated from german)
    Any help appreciated,
    Eddie

    I'm guessing here - did this file start life as a WAV (BWF) file? If so, maybe the SMPTE start reference was converted to the .caf container's marker chunk as starting at at a different place than your Logic session into which you're trying to import. In the finder, it will play because the finder doesn't care about the embedded meta data.
    What happens if you convert it to .wav - will it import then?

  • DAV error while trying to modify an element with linked-image

    Hi,
    When I try to modify my item's image, I get the following error message :
    DAV: ORA-00001: violation de contrainte unique (PORTAL.WWDAV$PKPATH) (WWS-18026)
    Error in the API : Error while trying to update the element
    Anyone could help ?
    Thanks for your help,
    Best Regards,
    JC.Audard

    Welcome to the forums !
    Pl see if MOS Doc 360403.1 (Launcing Discoverer Plus Fails With Error "Oracle.Discoverer.Applications.Framework.Globalexceptionhandler.Execute Null" in Application.log File) is applicable in your case
    HTH
    Srini

  • How do you add a video clip to a slide show?

    How do you add a video clip to a slide show using elements 12?

    You can import some very short video clips into Photoshop and make gifs.  I can import short (10 second or so) .mvi video clips I've taken with my point and shoot camera.
    Use File ->Import->Video Frames to Layers
    CS3 doesn't recognize .mvi files until you enter *.* in the box, hit load, then find the file you want.
    After the file has been loaded, go to Windows, and check Animation.
    After the Animation bar loads, go to the right side arrow, check Make Frames from Layers.
    Then Save for Web and Devices, and you've got your gif.
    I find it much easier to use the separate software.

  • How do you add a new thumbnail to a slide show when using in-browser editing?

    how do you add a new thumbnail to a slide show when using in-browser editing?

    At this moment you can’t add pictures to a slideshow. You only can replace them.

Maybe you are looking for

  • Getting other people's messages on iMessage after losing my #? Help!

    I used to have phone service through T-Mobile but I ran out of money to pay for bills, and T-Mobile canceled my account eventually. Someone else in the area got an account with them and now they have my number. However, all my friends who had me in t

  • Cannot login website using Toshiba 32RL958 browser

    Maybe that should be "Not so smart TV..." Attempting to log into any site which requires a password fails. I know I'm not using the wrong password, but depending on the site I'm either returned to the logon screen or remain as 'Guest'. Any ideas plea

  • Will HDMI v1.4 work with HDMI v1.3?

    On my Optoma projector there is a HDMI v1.3 port which I would like to connect to my MacBook Pro Retina 15". Will it be okay to connect it with a HDMI v1.4 cable to my MacBook Pro Retina HDMI v1.4 port? Or do I need a converter? I do not want to buy

  • CS6 After update, "not supported on this type of Mac."

    Hi On a fresh install of 10.6, I installed CS6 master collection.  It was working fine till I ran the update and now it wont open but brings up the message "Not Supported on this type of mac". I've tried it on 3 different machines, and I can remember

  • Runtime error in MSS - Team- General Information- Related links- Employee Dates

    Hello All, We recently upgrade from 7.01 to 7.31, we also updated the respective XSS components also to compatible levels. All applicatoins are coming up well except the Employee dates and Desciplinary actions based on related links under MSS ->Team-