Accidentally deleted timeline sequence, audio and video tracks from my project!

I accidentally pushed Command+W and my timeline disappeared. When I brought it back under window it looked like this... It opens like this only under this project and not my other ones. Can someone help me out?
Thank you for any advice!

Open one of the auto save projects.
And of course you did Save A Copy to another drive for back up?

Similar Messages

  • Audio and Video tracks don't go up/down together EVEN when linked selection is checked!

    I'm sure this is something really simple but I just can't figure it out. And it must be a button or a option that I've checked because it didn't use to do that a few days ago.
    Basically, I have a clip on the timeline which has a video and an audio track. I want to move the video clip up to the next video track but I want the audio to move down to the next audio track too. Right now it's not doing that. Only the video file moves up to the next track and the audio clip remains in the same track. How do I fix that so that however many tracks I move the video up by the audio goes down by that same number of tracks?

    Hi Shooternz,
    shooternz wrote:
    Not sure how other NLES manage it but I think it would be a pain if audio  automatically followed video in this respect.  eg Blocked layers b'cos something is already there.
    FCP &, and earlier behaved that way. I prefer the way Premiere Pro does it. You often do not need to move the audio to a different track when you move video to another track. I want to control the placement of audio and video separately now.
    Thanks,
    Kevin

  • In elements 10 audio and video tracks loaded but appear to be blank

    running windows 7 with elements premiere 10... i have my audio and video loaded in the session but the tracks, 2 video with audio and one audio only track, appear to have no info. they play, but i cant see the wave file image.  i need to see the file and be able to zoom in so i can line it up for syncing.  i had at least the audio showing up at first, but somehow that seemed to disappear now? how do i fix this?

    sadworld4804
    The wave representation that you seek is in the pek file of the cfa and pek set for the audio. Did you let your audio go to completion for audio conforming before starting any work on the project?
    But, I am suspecting something else which is easy to remedy and hope this is it.
    1. Look to the left where it says track name, Audio 1, to see a speaker icon. You can toggle that to get 2 different "Audio Track Display Styles"
    and
    Please let us know if that was the issue, that is, the toggle choice for the "Audio Track Display Style".
    Thanks.
    ATR

  • MP4 movie error: No audio and video tracks found.

    I recently move all my movies to a better performance hard drive. I imported the movies or playlists to iTunes. All movies were playing flawlessly until one day I get the dialog "Can't access file" ... I tried several things I encounter on this communities but the files still not played.
    I can see all the files with their size on the hard drive, but when I try to imported or drag to iTunes, they simply not appear or they don't import at all.
    In one of my test I found a dialog appear indicating "Error opening file: No audio or video tracks found" ...
    I need the way to fix this situation, since I have over 500 movies on that drive. Would somebody help me ???
    My email is [email protected], just in case you want to help me directly.
    I can even pay a nice reward to the person who help me fix this issue. Seriously.

    What is a better performance hard drive and what operating system? Kind of sounds like this should be posted to the morons over at Power Mac forum and the bozo that moderates it

  • Grouping Audio and Video tracks?

    iMovie HD:
    When I insert new clips or edit existing ones, my imported audio tracks lose sync with the clips that come after the place of edit. I am continuously manually re-aligning the audio which is very time consuming.
    Is there a way to group or link Audio and video so the that imported audio will stay in sync with my clips?
    I understand that it may not be possible for the clip I am working on, but what about the clips after the clip I'm editing?
    Christo

    Found the answer: "Lock audio clip at playhead"

  • How to stream audio and video captured from mic and webcam in sync.

    I am working on a video chat project. I need to capture audio and video from mic and webcam and create rtp stream for them. How can I proceed for this. Any source code help will be highly appreciated. Otherwise just guide me how to do this and point to any good resource which is directly related to my need.
    Thanx.

    t.b.m
    As mentioned by you, i am doing exactly like that . I have coded transmitter class. But at the receiver side it is unable to play the stream. I am posting my code . Can you please help with me with any mistake i m making in my code ?? Or with way I should receive stream at receiver side. Plz see my code. I am streaming to ip address 172.31.80.67.
    package heyram;
    import java.util.logging.Level;
    import java.util.logging.Logger;
    import javax.media.control.*;
    import javax.media.protocol.*;
    import javax.media.format.*;
    import java.io.IOException;
    import java.util.Vector;
    import java.net.InetAddress;
    import java.awt.*;
    import java.io.*;
    import java.net.InetAddress;
    import javax.media.*;
    import javax.media.protocol.*;
    import javax.media.protocol.DataSource;
    import javax.media.format.*;
    import javax.media.control.TrackControl;
    import javax.media.control.QualityControl;
    import javax.media.rtp.*;
    import javax.media.rtp.rtcp.*;
    import com.sun.media.rtp.*;
    import java.lang.Thread.*;
    public class HEYRAM{
    Format[] format=new Format[2];
    Vector[] devices=new Vector[2];
    CaptureDeviceInfo[] di=new CaptureDeviceInfo[2];
       SessionManager rtpsm = new com.sun.media.rtp.RTPSessionMgr();
    Processor p=null;
    Processor p1=null;
    boolean result;
    public HEYRAM(String address,int port,int ttl){
        try{
                InetAddress destaddr = InetAddress.getByName(address);
                SessionAddress sessaddr = new SessionAddress(destaddr,
                                                             port,
                                                             destaddr,
                                                             port + 1);
                String cname = rtpsm.generateCNAME();
                    String username = null;
                try {
                username = System.getProperty("user.name");
            } catch (SecurityException e){
                username = "jmf-user";
            // create our local Session Address
            SessionAddress localaddr = new SessionAddress();
                SourceDescription[] userdesclist= new SourceDescription[]
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_EMAIL,
                                          "[email protected]",
                                                                     1,
                                          false),
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_CNAME,
                                          cname,
                                          1,
                                          false),
                    new SourceDescription(SourceDescription
                                          .SOURCE_DESC_TOOL,
                                          "JMF RTP Player v2.0",
                                          1,
                                          false)
                rtpsm.initSession(localaddr,
                                userdesclist,
                                0.05,
                                0.25);
                rtpsm.startSession(sessaddr,ttl,null);
            } catch (Exception e) {
                System.err.println(e.getMessage());
                //return null;
        // rtpsm.initSession(localAddress, defaultUserDesc, rtcp_bw_fraction, rtcp_sender_bw_fraction);
            // rtpsm.startSession(...);
    public void createVideoSession()
        format[1] = new VideoFormat(VideoFormat.YUV);
        devices[1]= CaptureDeviceManager.getDeviceList( format[1]);
         di[1]= null;
            if (devices[1].size() > 0) {
                 di[1] = (CaptureDeviceInfo)devices[1].elementAt(0);
                  System.out.println(di[1].toString());
            else {
                // exit if we could not find the relevant capture device.
             System.out.println("1234jjfjsajfjasf1");
                System.exit(-1);
            // Create a processor for this capture device & exit if we
            // cannot create it
            try {
                p1 = Manager.createProcessor(di[1].getLocator());
            } catch (IOException e) {
                System.out.println("1234jjfjsajfjasf2");
                System.exit(-1);
            } catch (NoProcessorException e) {
                System.out.println("1234jjfjsajfjasf3");
                System.exit(-1);
            // at this point, we have succesfully created the processor.
            // Realize it and block until it is configured.
           // p1.configure();
         result = waitForState(p1, Processor.Configured);
         if (result == false)
         System.out.println("Couldn't realize processor");
            p1.setContentDescriptor(new ContentDescriptor( ContentDescriptor.RAW_RTP));
            // block until it has been configured
            TrackControl track[] = p1.getTrackControls();
            boolean encodingOk = false;
            // Go through the tracks and try to program one of them to
            // output ULAW_RTP data.
            for (int i = 0; i < track.length; i++) {
                if (!encodingOk && track[i] instanceof FormatControl) {
                    if (((FormatControl)track).
    setFormat( new VideoFormat(VideoFormat.YUV)) == null) {
    track[i].setEnabled(false);
    else {
    encodingOk = true;
    else {
    // we could not set this track to gsm, so disable it
    track[i].setEnabled(false);
    // Realize it and block until it is realized.
    p1.realize();
    result = waitForState(p1, Processor.Realized);
         if (result == false)
         System.out.println("Couldn't realize processor");
    // block until realized.
    // get the output datasource of the processor and exit
    // if we fail
    DataSource ds = null;
    try {
    ds = p1.getDataOutput();
    } catch (NotRealizedError e){
    //System.exit(-1);
    System.out.println("1234jjfjsajfjasf4");
    // Create a SessionManager and hand over the
    // datasource for SendStream creation.
    // The session manager then needs to be initialized and started:
    // rtpsm.initSession(...);
    // rtpsm.startSession(...);
    try {
    (rtpsm.createSendStream(ds, 0)).start();
    } catch (IOException e){
    System.out.println("1234jjfjsajfjasf6");
    e.printStackTrace();
    } catch( UnsupportedFormatException e) {
    System.out.println("1234jjfjsajfjasf7");
    e.printStackTrace();
    public void createAudioSession(){
    format[0] = new AudioFormat("linear",8000,8,1);
    devices[0]= CaptureDeviceManager.getDeviceList( format[0]);                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • How can I combine the audio and video files from youtube downloads when they don't automatically combine?

    I'm using YouTube Video and Audio Downloader. Sometimes the audio and video files combine automatically, sometimes they don't - remaining as separate " DASH - .m4a and DASH - .mp4 ". It used to be that when this would happen I could open up a "ffmpeg" window which would allow me to "manually" convert them to a combined .mp4 file. It was a "drag and drop" type of interface. For some reason I can no longer access that ffmpeg combining function. I tried clicking on ffmpeg.exe. I tried re-downloading ffmpeg several times, both from the Downloader options tab and from the ffmpeg website.
    Thanks for your help.

    Sounds like a question for the developer of the video download add-ons that you have installed.

  • How can I delete both an audio and video section of my video?

    I am making a gaming video, so I kept the audio from the game and added live commentary that I did with my friend. I want to delete a section of the video and audio, but when I select the video, the audio from the commentary stays and instead it cuts off the ending audio. How do I fix this?

    there's a simpler method, without leaving iMovie
    (@AppleMan: I can still teach you tricks ) :
    set your playhead where you want to split video+audio clip
    click into the video (make it yellow bordered)
    hit cmd-shift-S (Split)
    tricky part: don't move the position of playhead, just select the green audio-bar underneath
    hit cmd-shift-S again
    repeat steps for OUT
    => the unwanted part is 'isolated', select clip, backspace, poof! erased, repeat for audio track
    in FCPX: hit R (for range tool), select, erased, done ....
    (I know, why I left iMovie 2y ago ..... )

  • Audio and video track strangeness

    Hi,
    I have a few camera angles that have 4 audio tracks associated with them, and other camera angles that are just one track...
    I was attempting to stack all of my camera angles in fcp, so that I could sync the audio up for the various angles, and then cut between them and drag various pieces to the top video track (I assume this is a standard way of working).
    Anyway, so the problem I was experiencing was, I had one video track with one audio track, and then the next video track above that had 4 audio tracks connected to it... So if I tried to take a slice of the 1st video track, and move it to the next track, the audio would go ontop of one of the 4 tracks....
    I thought I could solve this by locking the video and deleting 3 of the audio tracks so everything would just have 1 audio channel (I dont need the other 3 for my editing purposes)... However, it still causes the audio to behave oddly and jump 2 tracks rather than one....
    How do I fix this?? I don't even understand what is really happening here.
    -p

    Hmm after looking at it, it seems that what's happening is even though 1 audio track is assigned to each video track, FCP thinks that there should be 2 audio tracks? So when I move a video track to the next video channel, the audio is moving down two audio tracks instead of one...
    Ok, so atleast I do understand WHAT is happening, I just don't know why.
    -p

  • Seperating audio and video tracks

    Hi there,
    Im using FCPX and i have a seperate audio track to the videos. I add the videos in to the storyline, and then try to move them to sync in with the audio, however every time i move them, it moves the audio. whats the best way to stop this so that i can move just video clips and leave the audio alone?
    Many thanks for any help you can give

    Since you have almost finished editing, I suggest you first make a duplicate of your project, just in case something goes wrong. (File->Duplicate Project, and choose to only duplicate the project, since you'll be using the same media and events).
    Consider this example:
    You need to move the video away from the primary storyline (select the clips there and do  Cmd-opt-up arrow to move the video up - this will leave a gap clip and move all the video above as connected clips).
    For some reason, it appears that Cmd-opt-down does NOT work with audio only clips (it does work for video clips).
    But the point is: it does not matter now. You can just leave the gap clip in the primary and adjust the video part. The audio will stay as it is, below the gap, so it looks like this will do what you need.
    Oh, and the "option" key is the same as "alt".

  • Scripting: How To Tell Between Audio and Video Track?

    When I create a collection of tracks from the main library and iterate through them, I get everything (in my case, video and audio tracks - no podcasts or TV shows as of yet). In checking the "Kind" class, they all have a value of "1".
    How can I tell if a track I'm looking at is audio or video? Also, when I do start downloading podcasts and/or TV shows, is there a way to differentiate them also?
    Thanks

    chillpill 
       **** so much for that on the Western Digitals.  The interface is USB3
    goodness, yes, youve got one of those OLD WD drives that has the controller board AND USB all as ONE SINGLE UNIT
    write that HD off. 
    your "classique"  HD here:
    http://karlsbakk.net/bilder/WD10TMVW/wd10tmvw-2.jpg
    tjk Wisconsin 
    So being USB3 doesn't tell us anything at all.
    Yeah it does, it tells me its one of those OLD HD that was made with the "lets save 2 cents and make it all one piece" philosophical designs.

  • Locking Audio and Video Tracks in CS6 Tip

    I discovered, again on accident :-) that if you hold down the shift key and select the Lock Track Icon on the audio or video, it locks, and unlocks all the tracks.
    Works with selecting the "eyeball" icon, selecting all tracks and turning audio on or off for all tracks too
    I found this pretty helpful on the project I am working on.

    That's great. A simple adjustment and it works like a charm. Voila! One click of the mouse and the locks all snap like a year old bagel.
    Thanks once more for your help, Tom.

  • Audio and video tracks in movies and tv shows purchased at the itunes store do not play in sync on my desktop PC - can anybody help?

    Any thoughts?

    Purchased movies from iTunes are automatically available on Apple's cloud, but not as part of your purchased storage; purchased movies are stored free, since you can redownload them any time (unless the movies are no longer available).
    From Apple:
    iCloud automatically backs up the most important data on your device using iOS 5 or later. Once you have enabled Backup on your iPhone, iPad, or iPod touch .....
    What is backed up
    You get unlimited free storage for:
    Purchased music, movies, TV shows, apps, and books
    Notes: Backup of purchased music is not available in all countries. Backups of purchased movies and TV shows are U.S. only. Previous purchases may not be restored if they are no longer in the iTunes Store, App Store, or iBookstore.
    Some previously purchased movies may not be available in iTunes in the Cloud. These movies will indicate that they are not available in iTunes in the Cloud on their product details page in the iTunes Store. Previous purchases may be unavailable if they have been refunded or are no longer available in the iTunes Store, App Store, or iBookstore.
    You get 5 GB of free iCloud storage for:
    Photos and videos in the Camera Roll
    Device settings (for example: Phone Favorites, Wallpaper, and Mail, Contacts, Calendar accounts)
    App data
    Home screen and app organization
    Messages (iMessage, SMS, and MMS)
    Ringtones
    Visual Voicemails

  • How to reset the feature that allows audio and video tracks to snap to other tracks on timeline

    I have somehow disabled the feature that allows you to drag and snap video and audio tracks on the timeline to other tracks or positions of import.  It is only one project that has been affected, and all I can think of is that while performing some other keyboard shortcut, I accidentally perfromed a shortcut that diabled this feature. 

    You mean, "Snap?" Press 'S' on the keyboard, or press the magnet button in the Timeline panel.

  • Lock audio and video track

    If I put a video on the timeline, with no audio, then I bring in an audio file for the video, how can I "lock" them together, so I can move them around the timeline as one. I know I can just select both tracks and move them as one, but I would rather have them locked together so if I cut they are still together. Thanks!
    -Caleb

    Glad to help.
    Not begging for points here, but, at the least, please mark the thread as answered so others will know it's resolved.

Maybe you are looking for

  • New iMac to TV

    OK I want to connect my new IMac to my TV. I know I need an apple mini-DVI to DIV adapter and a DVI to HDMI cable. Questions: 1) Is the DVI end of the mini-DVI to DVI adapter male or female? 2) is it a DVI-D format? A good image of the DVI end of thi

  • Rented movies on ATV2, can't play- An error occurred  loading this content.

    When I attempt to play the two movies on ATV (Gen 2) I rented, I receive the error: An error occurred loading this content. Try again later. No other messages display, and it is not clear what to do next, or how to fix this issue. I tried the followi

  • Unexpected behavior of User exit.

    Hello All, I am facing an issue in the user exit at the info package level. My requirement is to pass date range using abap routine in an info package. In the range, I am passing constant value in from field and determining To field using FM. (for ex

  • Upstream bandwidth QoS profile 5508 WLC

    Hello, Is it possible, through a QoS profile, to control how much bandwidth a user gets to use for upstream traffic?  I can easily set limits for downstream traffic, via the per user bandwidth contracts, but it is not obvious to me on how to control

  • I can'nt get skipe to work tells me invaled port how do i get it to work with firefox

    when i use my firefox i cant seem to get skipe to work with it and it tells me invaled port so please help me fix this.