Audio sync problem as soon as iMovie splits single DV into multiple MOV

The original DV has perfect audio sync. When I split a clip (e.g. delete some frames), iMovie splits the files and changes to .MOV. The audio is now out of sync.
Anyone else see this? Any work arounds?
Thanks -- Sophie

Hi
Error -41   mFulErr  Memory full (open) or file won't fit (load)
So if You've really got 40Gb free space on Start-Up (Mac OS) hard disk - Others DO NOT count as neither iDVD or Mac OS can use space there for it's temp files.
Then I would close down Mac even disconnect Mains - Then re-start it and see if it got's it's memory right.
Else
• Audio from iTunes - use to give me problems - so I do - in iTunes
• collect the needed audio into a new PlayList
• Burn this out as an Audio-CD (.aiff) - NOT .mp3
• Use thge files on this CD in movie projects
Works for me.
Yours Bengt W

Similar Messages

  • Split Single IDOC into Multiple IDOC's Based on Segment Type

    Hi Experts,
    I have a scenario IDOC to FILE ,  Split Single IDOC into Multiple IDOC's based on Segment Type
    Outbound:
    ZIdocName
    Control Record
    Data Record
    Segment 1
    Segment 2
    Segment 3
    Status Record
    I should get output like below
    Inbound:
    ZIdocName
    Control Record
    Data Record
    Segment 1
    Status Record
    ZIdocName
    Control Record
    Data Record
    Segment 2
    Status Record
    ZIdocName
    Control Record
    Data Record
    Segment 3
    Status Record
    Please suggest me step by step process to achieve this task.
    Thanks.

    Thanks a lot Harish for reply.
    I have small doubt. According to your reply , If we have N number of segments in single IDOC with same fields in all segments then for splitting Single IDOC into Multiple IDOC's based on Segment Type we need to duplicate N number of target IDOC tree structure.
    Is that possible to Split single IDOC into Multiple IDOC's based on Segment Type using only one Target IDOC structure without duplicating the Target IDOC structure tree.

  • Splitting single video into multiple files - workflow improvements?

    I regularly need to split a single video into multiple separate files that are used by other programs.  I'm using Premiere Pro CS4 for a number of reasons including the ability to easily and accurately select a scene by individual frames, native audio and video effects/filters, and the ability to import and export various video types.  I'm open to using other tools, but I haven't yet found one that is even close to Premiere Pro when it comes to accurately selecting split points.
    I'm not a Premiere Pro expert.  I have been doing this for about four months and have read many resources (books, forum posts, help guides) to refine the workflow I'm currently using.  My question:  does anyone know any improvements that might save me time/keystrokes.
    Current workflow:
    I've bound F8 to File > Export > Media
    Import video file
    Open in source monitor
    Set In and Out points for scene in source monitor
    Ctrl-drag from source monitor to Project Panel (creates a subclip)
    Repeat 3 and 4 for all scenes/subclips
    Select all subclips from Project Panel and drag to timeline
    Set work area bar to first subclip in timeline by the following four keystrokes:  Home, Alt-[, PageDown, Alt-]
    Type F8 (File > Export > Media shortcut).  Type output file name, click OK and the first subclip is put in the AME queue
    For the remaining subclips, type: Alt-[, PageDown, Alt-], F8, output file name, OK and repeat until done
    Any thoughts/ideas on workflow improvements?
    Thank you!

    Thank you Hunt.
    For the sake of brevity, I didn't include all of the details about the various aspects of the projects.
    Early on I was doing what you suggested and yes, it is a little quicker.  I learned (painfully) a couple of months later that I sometimes have to go back and adjust the clips and this method (trim to timeline with no subclips) resulted in quite a bit of duplicate effort (to reobtain start/stop points).  I've since learned that managing the "scenes" as subclips in topical bins allows me to go back and make adjustments, long after I've totally forgotten about the project content, without a lot of unnecessary reworking.

  • Split single row into multiple rows containing time periods

    Hi,
    I have a table with rows like this:
    id, intime, outtime
    1, 2010-01-01 00:10, 2010-01-3 20:00
    I would like to split this row into multiple rows, 1 for each 24hr period in the record.
    i.e. The above should translate into:
    id, starttime, endtime, period
    1, 2010-01-01 00:10, 2010-01-02 00:10, 1
    1, 2010-01-02 00:10, 2010-01-03 00:10, 2
    1, 2010-01-03 00:10, 2010-01-03 20:00, 3
    The first starttime should be the intime and the last endtime should be the outtime.
    Is there a way to do this without hard-coding the 24hr periods?
    Thanks,
    Dan Scott
    http://danieljamesscott.org

    Thanks for all the feedback, Dan.
    It appears that the respective solutions provided will give you: a) different resultsets and b) different performance.
    Regarding your 'truly desired resultset' you haven't answered all questions from my previous post (there are differences in the provided examples), but anyway:
    I found that using CEIL or ROUND makes quite a difference, using my 'simple 3 record testset' (30 records vs. 66 records got initially returned, that's less than half of the original). That's quite a difference. However, I must call it a day (since it's almost midnight) for now, so there's room for more optimizement and I haven't thoroughly tested.
    But this might hopefully make a difference performancewise when compared to my previous 'dreaded example':
    SQL> drop table t;
    Table dropped.
    SQL> create table  t as
      2  select 1 id, to_date('2010-01-01 00:10', 'yyyy-mm-dd hh24:mi') intime, to_date('2010-01-03 20:00', 'yyyy-mm-dd hh24:mi') outtime from dual union all
      3  select 2 id, to_date('2010-02-01 00:10', 'yyyy-mm-dd hh24:mi') intime, to_date('2010-02-05 20:00', 'yyyy-mm-dd hh24:mi') outtime from dual union all
      4  select 3 id, to_date('2010-03-01 00:10', 'yyyy-mm-dd hh24:mi') intime, to_date('2010-03-03 00:10', 'yyyy-mm-dd hh24:mi') outtime from dual;
    Table created.
    SQL> select id
      2  ,      max(intime)+level-1 starttime
      3  ,      case
      4           when level = to_char(max(t.outtime), 'dd')
      5           then max(t.outtime)
      6           else max(t.intime)+level
      7         end outtime
      8  ,      level period      
      9  from   t
    10  connect by level <= round(outtime-intime)
    11  group by id, level
    12  order by 1,2;
            ID STARTTIME           OUTTIME                 PERIOD
             1 01-01-2010 00:10:00 02-01-2010 00:10:00          1
             1 02-01-2010 00:10:00 03-01-2010 00:10:00          2
             1 03-01-2010 00:10:00 03-01-2010 20:00:00          3
             2 01-02-2010 00:10:00 02-02-2010 00:10:00          1
             2 02-02-2010 00:10:00 03-02-2010 00:10:00          2
             2 03-02-2010 00:10:00 04-02-2010 00:10:00          3
             2 04-02-2010 00:10:00 05-02-2010 00:10:00          4
             2 05-02-2010 00:10:00 05-02-2010 20:00:00          5
             3 01-03-2010 00:10:00 02-03-2010 00:10:00          1
             3 02-03-2010 00:10:00 03-03-2010 00:10:00          2
    10 rows selected.
    SQL> By the way: I'm assuming you're on 10g, is that correct?
    Can you give us some information regarding the indexes present on your table?

  • Split single transaction into multiple PDFs

    I have a single XML file that contains a form that overflows multiple times. I want each form to be treated as a separate transaction (i.e. I want each form to generate a separate pdf).
    From the FSISYS:
    < ExtractKeyField >
    SearchMask = 1,<Wrapper
    I want each of these Address Changes to result in a separate PDF.
    <Wrapper>
    <ProducerConfirmations beginTime="0001-01-01T00:00:00" endTime="0001-01-01T00:00:00" emailChange="true" nyFlag="NA">
    <AddressChange previousAddressId="ResidentAddr_Old" addressId="ResidentAddr" mode="email" responsys="e0740ace1f534391b464b03707874636" addressType="Residential" />
    <AddressChange previousAddressId="BusAddr1_Old" addressId="BusAddr1" mode="email" responsys="e0740ace1f534391b464b03707874636" addressType="BusinessAddress1" />
    <AddressChange previousAddressId="BusAddr2_Old" addressId="BusAddr2" mode="email" responsys="e0740ace1f534391b464b03707874636" addressType="BusinessAddress2" />
    <AddressChange previousAddressId="BusAddr3_Old" addressId="BusAddr3" mode="email" responsys="e0740ace1f534391b464b03707874636" addressType="BusinessAddress3" />
    <AddressChange previousAddressId="BusAddr4_Old" addressId="BusAddr4" mode="email" responsys="e0740ace1f534391b464b03707874636" addressType="BusinessAddress4" />
    </ProducerConfirmations>
    </Wraper>
    Any way I can force the PDF print driver to produce each page as a separate file?
    Muchas gracias,
    Dave

    You'd need to use class recipients and make this node the address field. There is not an other way to split at the transaction level.

  • Split single column into multiple column using sql /plsql

    create table test (name varchar2(255);
    insert into test values('DH  RED 20 12/10 10 2 ');
    insert into test values('PM  STUD 20 15/10 20 29.55' );
    insert into test values('LS  MENTHOl FILTER ASC 18/70 60 240.66');
    insert into test values('WINSTON WHITE CLASSIC 13    18/70 60 240.66');
    My Output should be like as below in other table :
    create table test_result (brand varchar2(255),packet   varchar2(50),amount varchar2(25),total varchar2(25));
    BRAND                                   PACKET       AMOUNT           TOTAL
    DH  RED 20                            12/10            10              2
    PM  STUD 20                           15/10            20              29.55
    LS  MENTHOl FILTER ASC               18/70            60              240.66
    WINSTON WHITE CLASSIC 13             18/70            60              240.66can you please help me to solve this issue
    thanks in advance
    Edited by: A on Apr 21, 2012 11:33 PM
    Edited by: A on Apr 21, 2012 11:34 PM
    Edited by: A on Apr 21, 2012 11:34 PM

    h4. # Database should be 10g. If version is below 10g query need to be modified as per string format.
    h4. # Split string into two parts by '/'. First part contain brand + packet(1), Second part contain packet(2) + amount + total
    h4. # Your brand name can be of any length.
    String Format* : <Brand Name><space><packet(1)>/<packet(2)><space><amount><space><total>
    SELECT name,
           REGEXP_SUBSTR(first_part,'.+[[:space:]]',1,1) brand,
           REGEXP_SUBSTR(first_part,'[^[:space:]]+/',1,1) || REGEXP_SUBSTR(second_part,'[^[:space:]]+[[:space:]]',1,1) packet,
           REGEXP_SUBSTR(second_part,'[^[:space:]]+[[:space:]]',1,2) amount,
           REGEXP_SUBSTR(second_part,'[^[:space:]]+$',1) total
    FROM
      (SELECT trim(name) name,
              trim(substr(name,1, instr(name,'/'))) first_part,
              trim(substr(name,instr(name,'/')+1)) second_part
       FROM test )
    {code}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Splitting single idoc into multiple xml's

    Hello,
    My requirement is such that, i need to split an custom IDoc into three xml which will be picked up by MDM, as i am new to PI 7.1 kindly guide me through the process.
    and the second requirement is, i need to map the same custom IDoc into three different MDM repositories pls guide me through the process

    Hi Abhishek,
    [quote]My requirement is such that, i need to split an custom IDoc into three xml which will be picked up by MDM, as i am new to PI 7.1 kindly guide me through the process
    For this, you have to go for multimapping.
    The links for it are already provided in the above posts.
    and the second requirement is, i need to map the same custom IDoc into three different MDM repositories pls guide me through the process
    Can you please explain this requirement further?
    -Supriya.

  • Major "BUG" in Imovie 9 - Audio Sync Problem on Export  !

    Well I'm a hard-core Apple user from day one, but unfortunately today I'm not to proud about the latest version of Imovie 9.
    It seems there has been a "MAJOR audio sync problem on export" in Imovie 9, since July 2009. Apple knows about this bug for a long time now, but didn't release any bugfix yet!
    Here's what it's all about:
    It seems if you use the (custom /manual) speed-adjustments and not the preset slider speeds, you will experience (after exporting your movie) annoying bursts of audio from clips that had been set to mude. The strange thing is that you will only experience this audio-bug after exporting, you will NOT experience it in the project playback mode!
    Here's what you can do:
    Find ALL the clips in your Project that are Speed Adjusted.
    Instead of using a "Custom Speed" percentage, use any of the "Preset Speeds"
    Preset Speeds on the Slider = 12.5%, 25%, 50%, 100%, 200%, 400%, 800%
    Then, export your project as usual.
    No more sync issues.
    Really hope That Apple will come up with a real BUGFIX soon.
    It's a shame that a major bug in a otherwise GREAT PRODUCT, hasen't been fixed yet!
    What's wrong with Apple?...this is not one of their finest hours.
    Still A BIG fan from Imovie HD,...I'll chance to Imovie 9 when the bugs are finaly fixed!

    This is TERRIBLE! I have spent so much time working on this project, and I really don't want to adjust the speed settings to the preset levels, BECAUSE I need to motion of the video to match certain musical points. I can't re-film my video, and I needed this project done TODAY. I made a music video with some kids at summer camp, and today is the last day- the day we were supposed to all watch it together, and now, I've got NOTHING!!!! (Because I can't export it without all those glitches!)
    I am MAJORLY DISAPPOINTED on this one. I've made movies in windows movie maker before, and purposely used imovie, because you know, everything on macs is supposed to be better. Well, I guess I was wrong.

  • How to stop the spinning ball/pizza that is stalling repairs to project on imovie 09? on macosx10.5.8 using iomega and superspeed ext h.d. as storage for the events and projects archive of a wedding video that has had audio sync problems on all share form

    How to stop the spinning ball/pizza that is stalling repairs to project on imovie 09? on macosx10.5.8 using iomega and superspeed ext h.d. as storage for the events and projects archive of a wedding video that has had audio sync problems on all share formats (iDVD, mp4, and last of all iTunes). The project label now carries signal with yellow triangled exclamation “i tunes out of date”.
    To solve the sync problem I’m following advice and detaching sound from all of the 100 or so short clips.  This operation has been stalled by the spinning ball. Shut down restart has not helped.
    The Project is mounted from Iomega and superspeed ext hd connected to imovie09 on macosx 10.5.8.
    What to do to resume repairs to the audio sync problem and so successfully share for youtube upload?

    How to stop the spinning ball/pizza that is stalling repairs to project on imovie 09? on macosx10.5.8 using iomega and superspeed ext h.d. as storage for the events and projects archive of a wedding video that has had audio sync problems on all share formats (iDVD, mp4, and last of all iTunes). The project label now carries signal with yellow triangled exclamation “i tunes out of date”.
    To solve the sync problem I’m following advice and detaching sound from all of the 100 or so short clips.  This operation has been stalled by the spinning ball. Shut down restart has not helped.
    The Project is mounted from Iomega and superspeed ext hd connected to imovie09 on macosx 10.5.8.
    What to do to resume repairs to the audio sync problem and so successfully share for youtube upload?

  • Audio sync problem with videos imported from iPod Touch

    I have an iPod Touch 4th Generation that I used to shoot video at a family birthday party. When I imported the footage into iMovie '11, the audio is not in sync with the video (video is about two seconds behind audio) and there is only the left channel of audio. I verified that the video on the iPod plays just fine--no audio sync problem, both left and right channels work. I just upgraded to iOS 5 on the iPod Touch. The iMac is running Snow Leopard 10.6.8.
    As a workaround, I can import the video into iPhoto instead. When I play the video in iPhoto, there are no audio sync problems and both channels of audio can be heard. I have imported other iPod Touch videos successfully into iMovie '11 in the past few months, but this has been the first time these problems have occurred. Any help would be appreciated.

    Premiere cannot handle clips with variable framerate.
    Your converted clips need to have constant framerate.
    Otherwise use a converter like Handbrake.

  • Premiere CS4 - Audio sync problems, Encoding Problems

    Hi,
    I've been using Premiere CS3 for encoding 20-25 minute videos to deploy on a Flash Media Streaming server.
    Today I upgraded to CS4 and everything that I render to FLV/FV4, H264 or Quicktime format has serious audio sync problems when I use AAC as the audio codec. Unfortunately for me, AAC is the codec that I need to use for the streaming server. The audio is synchronized to begin with, but it gets progressively unsynched as the video progresses.
    Has anyone else had this problem? I'm using bitrates of 256 kbps, 512kbps for the video and 24 kbps / 32 kbps for the audio.
    Another thing that I've noticed is that many of the options that I used when encoding videos are no longer available!! For instance, I cannot generate hinting tracks for Quicktime, and most of the audio frequencies are gone for Quicktime as well.
    What a disappointment:(
    -Chris

    Seems to be an on going issue with no response from Adobe.  Have the same issue with the audio running ahead of the video.  (Cool if this was an old Japanese monster video).
    Running CS4 PP & AME all updates are current.  Nvida Quardro CX (current drivers 4.20.006) used several formats (Elemental h.264 to MPEG-2) same issue. 
    PC Intel Xeon CPU 3.20GHz 16GB RAM – Prof Win XP x64 Ser Pack 2
    Any help from Adobe would be appreciated.

  • Audio sync problem after scrubbing

    I'm trying to piece together some clips from a TV series called Legend of the Seeker. I'm using Premiere CS4 4.0.1, Vista Ultimate 64-bit.
    Placing the hour-long video in the Source Editor allows me to play the video fine from beginning to end, but if I start scrubbing through the file, the audio unsyncs itself immediately.
    Here's a screenshot of the video in GSpot:
    http://img14.imageshack.us/my.php?image=premieresync.jpg
    Setting IN and OUT points and then dragging a very small clip into the timeline has the same result.
    Any ideas would be very appreciated.

    You are actually pretty lucky to just have Audio sync problems, though I do not know why scrubbing would make any difference. With both Xvid and DivX one more often gets no Audio, or no Video.
    Agree 100% on the 3rd party conversion, prior to Import into PrPro.
    Hunt

  • CS4 audio sync problems

    Hi all,
    sorry if this question is old hat - I've searched the forums and can't seem to get a clear answer (most refer to CS3 and before) so thought I'd ask anew.
    My preview in Premiere CS4 is fine, as is the preview in Encore CS4. The video was captured from four tapes (HD as mpeg and SD as Matrox AVI) in Premiere. The final DVD (10 minutes) consists of 21 clips. All but one are OK - this one has the voices well out of sync with the video, even though other clips taken from the same tape are fine.
    I also had a major problem recently with an MP4 from youtube, which I guess is the same issue - everything else was fine, but this one clip was well out.
    I'm guessing by now this is an old problem. What's the solution, please?
    Thanks
    Paul.

    Newbie to Adobe here ...
    Okay,  so after spending over 14 hours trying to fix the audio sync problem I fixed mine. After editing my project I selected Sequence > Sequence Settings > Playback Settings > under Realtime Playback make sure the "Desktop Video Display During Playback" box is selected. Next, in "External Device" change the setting from "None" to your next option. Mine reads DV: 29.97 720 X 480i. Next, Under "Export" section in that same window select the in "External Device" select the DV option again. Also, you might want to "Disable video output when in background" ...select that box at the bottom of the screen.
    Now, try recording the video to the tape ....my audio now sync's as normal. I hope it works for you.\
    One more thing ... you can keep the "Desktop Audio" button selected.

  • Audio sync problem downloading VHS-C

    I've downloaded a straight VHS tape (with no audio sync problems) into final cut pro once I had changed the Camera setting to 32Khz and the capture and sequeence presets to 32khz as well (it was all aout of sync when the settings were 48Khz).
    The problem now, which is driving me MAD, is I have 13 hours of VHS-C tapes, which I have put into a VHS cassette converter to download and the audio is out of sync. The capture presets are the same as above (i.e. 32KHZ) . Why is this? I downloaded them initially at 48Khz (settings on the camera 48Khz and FCP at 48Khz in capture and sequence settings), but this was also out of sync.
    Why is it different from one VHS tape to a VHS-C tape?
    I hope there is a God out there that can help with this one?
    Thanks!

    Eagleray:
    I capture through a ADVC-100.
    I use to find the same problem playing VHS tapes with a standard VHS player from time to time and never solved it. The out of sync audio appears when capturing some specific tapes from specific sources:
    - All my home tapes recorded in my old VHS recorder shows a audio problem; not specifically out of sync, but some audio "cracks" from time to time, like an electronic noise. No way to find a capture setings that works.
    - Some customers VHS tapes that showed the out of sync (no noises) and again, no combination of digitalizer settings made it works. Had to resync the audio editing and stretching in an external audio editor or cutting shorts parts and syncing them with video. The our of sync appears in small captured portions, like 10 min or so.
    - Never found a sync or audio problem capturing from VHC-C (the small VHS tapes) playing them with the tape adapter in the player.
    I google long hours about this problems and all that I learned is that some old VHS recorders had not a "synchro" signal in the tape.
    As I told you, I don't use any pro VHS deck, just my consumer "state of the art" VHS home recorder.
    I hope there is a God out there that can help with this one?
    I don't think HE visit these forums.

  • Audio sync problem - simultaneous HDMI and analog output

    I'm currently running my audio out through my Geforce 460 via HDMI to my A/V receiver. I have a simultaneous stereo analog output running through my ASUS Xonar D2, using Pulseaudio & Amarok as the player (VLC-gstreamer backend).
    I use the HDMI and A/V receiver to power my main stereo in my living room, but on occasion when I want music around the house, I use the analog line out to send audio to an FM transmitter.
    The problem is, I'm running into audio sync problems. The audio starts out synchronised (at least to the naked ear) but within 20-30 seconds it is noticeably out of sync, with the analog audio (form my FM radio) running around a half second ahead of the HDMI output (my main speakers).
    So - where to begin finding where the sync problem is? The receiver? Conversions between 44Khz and 48Khz?
    Any help much appreciated - google-foo hasn't turned up anything obvious so far.

    Yeah - that was my thought - a very difficult, and probably insoluble problem as it stands. I can't just mute one of the devices as that would defeat the purpose of having multi-room music! Fortunately it's not too noticeable usually, as you can't usually hear the main stereo and the FM radios at the same time, unless you're standing in the right part of the house
    The analog splitter cable not really a goer, since running clean, crisp multi-channel HDMI with pass through when needed is the essential goal of the HTPC. So unless I was to switch inputs and or unplug cables...
    What I will end out doing, in the absence of a software solution, is hooking the FM transmitter directly to my receiver. I was going to just use the headphone-out jack of the receiver to feed audio to the FM transmitter, but the stoopid receiver can't output audio to external speakers at the same time as the headphone is plugged. To overcome this, I'll probably run a headphone amp off the receiver's RCA outputs, into the FM transmitter. Like this one: http://headamp.com/portable_amps/ae2/, or this one: http://www.amazon.com/Rolls-HA43-Headph … B00102ZOQC
    Last edited by sultanoswing (2013-11-13 06:15:11)

Maybe you are looking for