After copying the audio from one project to another, there is only silence?

I am working in Adobe Premiere CS4. Because of an error with one of my projects, I wound up just copying all the video as well as the audio (which has a bunch of fadeouts/intricate splices) to another project. When I try to play the audio in the timeline, however, there is just silence. The video is just fine, though, besides things like scaling being off, which I've accepted that I will have to re-do manually. But does anyone have any ideas as to why the audio is just not playing at all? Thanks.

Select one of the silent clips and then park the playhead over it.  Perform a Match Frame operation by pressing the M key.  That should bring your audio back.
-Jeff

Similar Messages

  • How do I copy the style from one control to another?

    I need to programmatically copy the style from one graph to another. I'm currently using the importstyle and export style functions but I'd like to avoid that since: 1) I'm creating >100 of the same graphs in a scrolling window and execution time is a concern, and 2) it makes it harder to redistribute the application, and 3) you shouldn't have to import/export from disk just to copy a graph style.
    I noticed the copy constructor was disabled so you can't just create a new one from the original. I suppose I could iterate through all the styles and transfer them from the master graph to all the copies but is there an easier way to do that? If not, is there some sample code for that?
    I'm using MStudio 7.0 for C
    ++.
    Thanks,
    -Bob

    One way that you could do this would be to create a helper method that configures your graph rather than configuring it at design-time, then use that helper method to apply the settings to the new graphs that you create. However, this would only work if you wanted all graphs to be configured exactly the same way - this would not work if the settings of your master graph are changing at run-time and you want the new graphs to be configured with the current settings of the master graph.
    Another approach is to query each control for IPersistPropertyBag, create an IPropertyBag, pass the IPropertyBag to the master graph's IPersistPropertyBag:ave, then pass the IPropertyBag to the new graph's IPersistPropertyBag::Load implementation. I'm not aware of any implementations of IPropertyBag that are readily available for use in applications, so the tricky part is creating the IPropertyBag. Below is a very simple implementation of IPropertyBag that should be enough to get the job done for this example. First, add this to your stdafx.h:
    #include <atlbase.h>
    CComModule _Module;
    #include <atlcom.h>
    #include <atlcoll.h>
    Here's the simple IPropertyBag implementation:
    class ATL_NO_VTABLE CSimplePropertyBag :
    public CComObjectRootEx<CComSingleThreadModel>,
    public IPropertyBag
    private:
    CAtlMap<CComBSTR, CComVariant> m_propertyMap;
    public:
    BEGIN_COM_MAP(CSimplePropertyBag)
    COM_INTERFACE_ENTRY(IPropertyBag)
    END_COM_MAP()
    STDMETHODIMP Read(LPCOLESTR pszPropName, VARIANT* pVar, IErrorLog* pErrorLog)
    HRESULT hr = E_FAIL;
    if ((pszPropName == NULL) || (pVar == NULL))
    hr = E_POINTER;
    else
    if (SUCCEEDED(::VariantClear(pVar)))
    CComBSTR key = pszPropName;
    CComVariant value;
    if (!m_propertyMap.Lookup(key, value))
    hr = E_INVALIDARG;
    else
    if (SUCCEEDED(::VariantCopy(pVar, &value)))
    hr = S_OK;
    return hr;
    STDMETHODIMP Write(LPCOLESTR pszPropName, VARIANT* pVar)
    HRESULT hr = E_FAIL;
    if ((pszPropName == NULL) || (pVar == NULL))
    hr = E_POINTER;
    else
    m_propertyMap.SetAt(pszPropName, *pVar);
    hr = S_OK;
    return hr;
    Once you have a way to create an implementation of IPropertyBag, you can use IPropertyBag and IPersistPropertyBag to copy the settings from one control to another like this:
    void CopyGraphStyle(CNiGraph& source, CNiGraph& target)
    LPUNKNOWN pSourceUnknown = source.GetControlUnknown();
    LPUNKNOWN pTargetUnknown = target.GetControlUnknown();
    if ((pSourceUnknown != NULL) && (pTargetUnknown != NULL))
    CComQIPtr<IPersistPropertyBag> pSourcePersist(pSourceUnknown);
    CComQIPtr<IPersistPropertyBag> pTargetPersist(pTargetUnknown);
    if ((pSourcePersist != NULL) && (pTargetPersist != NULL))
    CComObject<CSimplePropertyBag>* pPropertyBag = 0;
    CComObject<CSimplePropertyBag>::CreateInstance(&pPropertyBag);
    if (pPropertyBag != NULL)
    CComQIPtr<IPropertyBag> spPropertyBag(pPropertyBag);
    if (spPropertyBag != NULL)
    if (SUCCEEDED(pSourcePersist->Save(spPropertyBag, FALSE, TRUE)))
    pTargetPersist->Load(spPropertyBag, NULL);
    (Note that "CreateInstan ce" above should be CreateInstance - a space gets added for some unknown reason after I click Submit.)
    Then you can use this CopyGraphStyle method to copy the settings of the master graph to the new graph. Hope this helps.
    - Elton

  • How to Copy the PLD from one database to another

    Dear Members,
       i have designed the  PLD for Purchase Order, i want to copy the particular PLD into another Database.
    i tried to copy the PLD from one database to another through copy express.. i copied the PLD sucessfully. But the problem is,it copies all PLD's from one database to another. i want only the Purchaseorder PLD has to be copied in to another database.any body can help me in this regard.
    With Regards,
    G.shankar Ganesh

    Hi,
    select * into A1 from RDOC where Author !='System'
    select *  into A2  from  RITM   where Doccode  in (select Doccode from A1 )
    select * from A1
    select * from A2
    sp_generate_inserts 'A1'
    sp_generate_inserts 'A2'
    you will get Insert scripts of A1 and A2 tables .After that You 'll  Replace A1 to RDOC and A2 to RITM.
    So that you can RUN this SQL srcipts any where (In any Database)
    but First u have to run sp_generate_inserts  Storeprocedure(from websites) .
    drop table A1,A2

  • How to copy the data from one database to another database without DB link

    Good Day,
    I want to copy the data from one database to another database with out DB link but the structure is same in both.
    Thanks
    Nihar

    You could use SQL*Plus' COPY command
    http://technology.amis.nl/blog/432/little-gold-nugget-sqlplus-copy-command
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14357/apb.htm#sthref3702
    Edited by: Alex Nuijten on Sep 16, 2009 8:13 AM

  • How to Move or Copy the Tables from One Database to Another Database ?

    HI,
          Can any one help me on this, How i can move or copy the tables from one database to another database in SQL server 2005 by using SQL query. Hope can anyone provide me the useful and valuable response.
    Thanks
    Gopi

    Hello,
    Maybe these links help you out
    http://www.microsoft.com/downloads/en/details.aspx?familyid=56E5B1C5-BF17-42E0-A410-371A838E570A&displaylang=en
    http://www.suite101.com/content/how-to-copy-a-sql-database-a193532
    Also, you can just detach the database make a copy and move it to the new server.

  • Editing audio from one project to another

    I'm trying to build a DVD project of different musical performances in Final Cut Pro X. The Mac I'm working with crashes every 30 minutes regardless of what I'm doing so, instead of building a monstrous timeline with two hours worth of performances on it (which will never save given the crash issues), I'm trying to build it by each song (4-6 minutes each).
    The format is: opening billboard (with performer and song listed) --> fade into performance --> performance --> fade out of performance. If I were fading the audio out after each song, it would be simple but I'm trying to keep some of the audience track going under the next billboard so it blends better. I can't seem to cut the audio at the end of the fade out and apply it to the next song without continuing to build onto the same timeline which, due to the crash issues, doesn't help me.
    Is there an audio work around that I'm missing? All I want to do is fade the audio a little past the fade effect, copy it and apply it to the beginning of the next song. Anyone?

    Just ran into the same problem myself... while I get you CAN export the audio, then import it and use anyway you like I don't think that is the point of the original poster's question.
    The voice-over clip has unique properties and as such I (and it looks like other users) would like to be able to "copy & paste" a voice-over clip from one project to another. Alternatively if I could drag and drop the voice-over clip into my Event that would be great too. Doesn't seem like an unreasonable request. Right now the famed Apple ease-of-use is missing for those of us who have recorded voice over elements we want to use in more than one project.
    Had I known iMove would not allow sharing of voice over clips within iMovie I would have recorded my voice-over clips in another application and imported them all as audio-clips. Which certainly defeats the point of the inclusion of voice-over in iMovie.
    Any solutions that work within the app without an export/import required?

  • --Any way to copy/paste clips from one project to another w/o LOSING TRANSITIONS...??

    I have CS5...
    I'm trying to speed up render/export time. I have multiple edited video's in about 15 different projects.
    I had a couple video's within one project and rendered the work area - consisting of 4 video's...then exported. It was much faster than just going to straight exporting so I wanted to do the same with all the other video's.
    Pull everything into one project - render first - and export from there but premiere doesn't copy transitions from one project to another. Is there any way to get it to copy/paste transitions??
    Thanks

    exported regularly and took 2hrs 50min's for each video....then rendered and exported - took prob around 2hrs total - including rendering/exporting.
    That seems unlikely.  If anything, the separate render/export should take slightly longer (though not that much) as you may also have to transcode the preview files (depending on your preview codec) during the render, as well as decode them for the export.  Besides adding an additional layer of compression, it also adds time.  Here's what I mean.
    Export only:
    1. Decode original media
    2. Render new frame based on sequence, effects, titles, etc.
    3. Transcode that new frame to the export codec of choice.
    Render (1-3) /Export (4-5)
    1. Decode original media.
    2. Render new frame based on sequence, effects, titles, etc.
    3. Transcode that new frame to the Preview codec (if anything less than Uncompressed, this adds time and potentially degrades quality)
    4.  Decode the rendered frame (if not Uncompressed, which adds time)
    5. Transcode that (decoded) render frame to the export codec of choice.
    So you see, the render first process has two extra steps which add time, one of which could also introduce additional artifacts (depending on your preview codec).

  • Can I Copy and Paste From One Project To Another?

    I have a scrolling title working very nicely in one project and wanted to "simply" copy and paste it into another project.  After doing the copy on project 1, when I get to project 2 to do the paste, there is nothing there to paste.  Is this something with Premiere Elements 12, or with my iMac for not keeping what I copied in the appropriate buffer?  I found something online that implied there was some software to do this but I can't believe that is the only solution. 
    I also created a "temporary" project for easier editing with pictures, transitions and sound added that I want to put into my "master" project.  I could create an avi and bring it over but I was hoping to have the finished project all in one source.  Any thoughts would be appreciated. Thanks.
    Rick

    Thanks for the info.  I'll keep that in mind if I ever want to do it again.  Unfortunately, I had already just re-done it in the master before I saw this.  Amazingly (to me, anyway), I couldn't even cut and paste the TEXT in the title to a Word doc just to save me from keying it in again.  (It was more than a title - it was like movie credits with names, songs, etc.)  I figured I could at least cut and paste the text.
    The bigger issue was I had done a "save as" of my main project, deleted all but the 55 pictures I had, then added transitions and music, burned it to a RW DVD so I could see how it looked, then figured if it looked good I would just copy and paste the info into my master.  Well I wound up redoing that as well once I figured out I couldn't do that.  In Pinnacle, whether it was a title or just the video track or audio or both it was a simple highlight of what I wanted, copy it, close that project, open another one, paste it in.  Done.
    I also had trouble editing today.  If I edited my pictures, maybe changed one or added one, it messed up my soundtrack.   In Pinnacle I would click a lock icon on the timeline and edit either the audio or video to my heart's content and not mess up the other track.  I could leave the audio in place but replace the video.  For my daughter's wedding, for example, I took video from 3 different cameras but used the audio from just one so it played smoothly but I could switch the video around for the best shots and it looked very good.
    Dare I ask how to lock just the audio or video track?  Don't spend a lot of time replying.  I already edited my music file by putting it way out in the timeline where there wasn't any video track.  Then I could split the audio clip, copy part of it, and paste it back in.  I needed the music to last a little longer while the pictures were displaying.  Then when I was done I moved it where I wanted, but even at that, I had to be careful because moving it sometimes messed up the video track if I didn't do it just right.
    The good news is I'm pretty much done with my video.

  • Issues after copying a query from one IP to another

    Hi Friends,
    I have a query which was built on a infoset, i have built a multi provider with aditional objects apart from what i have in the infoset, i.e. this Multi provider has all the objects which are used in the query. I have copied the query from infoset onto the multi provider. All is well until this point.
    but when i see the default values or free characteristics of this copied query, it still shows the objects with prefix of old infoset. Shouldn't it be having prefix of multi provider instead as this query is based on the Multi provider?.
    Also when i save the query, i get a error message saying that XXX characteristic is not found in the info provider(MP), where as this cahr is available in the Multi provider.
    Can someone pls guide me how to resolve this?.
    Regards
    BN

    Hi,
    I get an error message when i try to copy the existing query to the new Mulit Provider. This i get in Transaction RSZC after i give source Ino cube XXX and Target Info cube ZZZ and select Queries radio button and execute.
    The error message what i am getting is as follows
    InfoObject Source__F1 is  missing in target info cube (Muti provider name).
    like this i am getting for almost all the objects, but all these objects are available in the target.
    Since, the query was a stright forward one i have created a new query exactly like the other one.But now i get another problem, i cant see the data in the report, even though there is data in DB. I checked the data on the Infoset and Multi Provider using Listcube.
    Can you suggest what can i do here?
    Regards
    BN

  • Copy a mapping from one project to another project in same reepository.

    Hi All,
    I am using OWB 10GR2. I have two projects in this repository called dev_project and test_project. after completion of mappings development in dev_project, i want to move the mapping from dev_project to test_project. I was able to copy the mapping from dev_project to test_project.
    However, when i open the mapping in test_project project, I was able to see all mapping operators like sources, targets and all other operators. But filter operators, join operators and aggregator operators doesn't have its properties( means there are no filter condidtion, join condition).
    Please help me how to take those filter and join conditions also from dev_project to test_project.
    Thanks,
    pv

    There is a OWB bug 8267898 described as:
    COPYING MAPPING BETWEEN PROJECTS IN OWB LOOSES ALL THE OPERATOR PROPERTIES
    Try to apply patch:
    Patch 8289030 - PSE FOR BASE BUG 8267898 ON TOP OF 10.2.0.4 FOR WINDOWS 32BIT (215)

  • Cant open boot archive after copying Solaris 10 from one machine to another

    We are running "Solaris 10 3/05 s10_74L2a" on a Sun Fire 480R.
    I tried to, using ufsdump to copy the filesysem to a T5220 which has 4 disks, the first 2 disks are a mirrored os of a Solaris 10 version already there.
    So I restored the ufs inages to the 3rd disk, ran installboot with the bootblock from the restored image for s sun Fire 480R as there did not appear to be a bootblock for a T5220 , as its a more recent server.
    ie:
    installboot /mnt/usr/platform/`uname -i`/lib/fs/ufs/bootblk /dev/rdsk/c1t2d0s0
    /mnt/usr/platform/SUNW,SPARC-Enterprise-T5220/lib/fs/ufs/bootblk: File not found
    so I do this instead :
    installboot /mnt/usr/platform/SUNW,Sun-Fire-480R/lib/fs/ufs/bootblk /dev/rdsk/c1t2d0s0
    Now then I try to boot I get :
    Boot device: /pci@0/pci@0/pci@2/scsi@0/disk@2 File and args:
    ufs-file-system
    Loading: /platform/sun4v/boot_archive
    Loading: /platform/sun4v/boot_archive
    Can't open boot_archive
    Evaluating:
    The file just loaded does not appear to be executable.
    but, as far as I know this old version of Solaris did not use a boot archive and there is no directory /platform/sun4v/boot_archive in the restored files, nor on the original server.
    So, my question is, if the old version of os did not support a boot-archive, why is this restored image, when I boot , giving this error.
    Surely all the data on the 3rd disk should be the same as on the old server.!!
    What am I missing here ??
    George

    Well, you can't just copy an OS from one type of system to another and expect it to work. For one thing the OS communicates with its hardware through the /dev/ and /devices layer, and that layer will be completely different when you transfer it to another system.
    Second of all the lack of boot block for the T5220 in your installation indicates that your version of Solaris 10 does not support the T5220 platform, which probably means that it will be impossible to boot completely on it anyway..
    I'm not sure when the SPARC systems started to use the boot-archive..
    Anyway, the two things you have missed is to create the boot-archive (with bootadm update-archive -R /mnt), and to run devfsadm on the new platform (devfsadm -r /mnt ).
    Even so, there is no guarantee that your version of Solaris actually supports your hardware.. But i guess that's documented in the Sun System Hardware Handbook..
    .7/M.

  • Possible to copy automation data from one project to another?

    Hi
    I have done some automation editing to a region in a project, and I would like to copy it to an identical region in another project. Is this possible?

    I have not tried this method I'm now going to describe, but 'logic' dictates it should work:
    1. In your donor project, open the *Automation Event List* , ctrl-⌘-E, then open a new Arrange window, ⌘-1. The new arrange window will now contain regions that only hold automation.
    2. Go to *Logic Pro>Preferences>Audio>Devices>Coreaudio* tab and UNtick the Enabled box. (If you don't, each audio file and instrument will have to be reloaded each time you switch from one to the other project. That would drive anyone absolutely nuts.)
    3. Now open the other project, get an Automation arrange window there, like in 1.
    Now you should be able to copy/paste automation regions between the two projects.
    Hope this works... I think that you need to set the playhead at the right position before pasting, but you'll have to figure that out yourself...
    regards, Erik.

  • I can't Import Video, Transitions & Audio From One Project To Another

    I've been working on this video all day and I’m finally in the home stretch but I've encountered my biggest problem yet. This is what I want to do. I have a series of clips, transitions, and separate music track in 1 open project and I want to transfer the whole kit and caboodle to another open project. For some reason when I do it only imports the video and some audio that's in track 1. I have tried locking audio clips to the video but it doesn't seem to be working. Can anyone help me!? I'm bleary eyed already I've been at this so long. Thanks!

    catspaw: Thanks for replying!!! I think I was unclear as to what my problem was. The way I work is to have one Master project open and I then import various clips from other secondary projects as I build my movie. I know . . . this might seem nutty it’s just how I work. The clips, sound and transition were from a separate project but they were only part of the main movie I was building in my Master Project. Am I making any since? Anyway, I couldn’t take it any more so I rolled up my sleeves and went 1 by 1 through the audio clips and lined them up by hand with the imported video. I know this must be almost INPOSSIBLE to understand the way I’m explaining it, sorry! Basically, though, for now, I’ve solved the problem. Thanks so much! I’ll post again when I have my next iMovie anxiety attack.

  • Copy the data from one column to another column using @

    I have two columns here - A and B.
    Column A has a complicated formula that will generate results. I wanted the results in Column A to be reflected in Column B without pasting the A's formula in B. This will save me the trouble of editing formulas in more than 1 column if there is a need.
    I saw somewhere that you can use "@" in column B but I have no idea how to use it.
    Assumingly column A is the first column. I tried to insert '@1' in B's formula and change B's column properties' Data Format as "Treat Text as HTML". It does not work.
    Please advise how I can do that.

    So is there any way to copy the data in Column A into Column B without putting the same formula? something like in Excel where we put "=C1". Its not possible in BI as it comes in excel.....The only way is to create a duplicate column in RPD or Answers screen and incorporate the formula and giving different name to it.
    whats the problem if you duplicate the column with same formula?....Ok still if you dont want to see identical just write some pseudo logic say
    Duplicated column f(x) case when 1=0 then column_name else formula end.....so it appears different to see but it outputs same.
    UPDATED POST
    Dont create in RPD,you can create a dummy column in that report request and change the f(x) to the above case i mentioned by taking the column from columns button in edit formula screen so when ever you edit the actual column formula that would reflect in the dummy column also as it is replicating from original one.Try and see
    hope helps you.
    Cheers,
    KK
    Edited by: Kranthi.K on Jun 2, 2011 1:26 AM

  • Publish Error after copying domain file from one mac to another

    Hello there,
    so here is the problem: I have had iweb installed on a MBP, and a website up and running. Now that I just bought an iMac I wanted to transfer all the iWeb over to the iMac and make it the main machine. I was doing all the transfer work manually rather than using the migration assistant or time machine.
    I have copied the domain file in the iWeb directory over to the iMac. iWeb starts and displays all the pages and sites normally, but when I try to publish I get the " Publish Error. An unknown error occurred" message.
    On the MBP everything was/is working normally.
    I have tried to copy the same file again, no change. I have deleted the preference file, no change.
    I have tried publishing to a local folder, and get the same error message.
    Does anybody have an idea how to get this fixed? I browsed through the discussions here but couldn't find anything regarding this specific issue.
    cheers
    grani

    Welcome to the Apple Discussions. Try the following:
    1 - delete the iWeb preference file, com.apple.iWeb.plist, that resides in your User/Library/Preferences folder.
    2 - go to your User/Library/Caches/com.apple.iWeb folder and delete the contents.
    3 - reboot.
    4 - launch iWeb and try to publish.
    If that doesn't help continue:
    5 - move the domain file from your User/Library/Application Support/iWeb folder to the Desktop.
    6 - launch iWeb, create a new test site and save.
    7 - go to the your User/Library/Application Support/iWeb folder and delete the new domain file.
    8 - move your original domain file from the Desktop to the iWeb folder.
    9 - launch iWeb and try again.
    OT

Maybe you are looking for

  • The bluetooth LE(BLE)'s Transmission rate of windows phone 8.1 is very slow

    GattCommunicationStatus status = await _characteristic.WriteValueAsync(                             writer.DetachBuffer(), GattWriteOption.WriteWithResponse); I use this function to send data to BLE device,but it takes about 3 s every time.How to slo

  • Mailexample.sql how do you determine the file type?

    I'm using the mailexample.sql which explains how to use the demo_mail wrapper package for utl_smtp. There's a procedure for attaching text files and a procedure for attaching binary files. I've got binary files to attach to email successfully. How ca

  • Apple TV not 6.0 update not available

    I've tried updating to Apple TV's 6.0 but it keeps saying that the current software I'm running is "up to date" (5.1.3).  Is anyone else having this problem?  Am I going to have to wait for the Apple TV to do it automatically?  Thanks for reading.

  • Very very simple method return question

    Using a UML tool, the following code has been generated for a method called getScores.      //getScores     public String[] getScores(int nCount)         //your code goes here         return null;      }Can I just clarify what this method is returnin

  • [EA4500] Multiple Devices with Open NAT?

    Hello! I have a PS3, PS4, Xbox 360, and Xbox One. The problem Im having and that Ive been having is keeping their NAT status to open. They are all assigned static IP addresses (which I made). What I do now is that everytime I want to use one of the d