Loop the timeline

Hi gang.
I've got a short audio segment I made ages ago, and at the top of the timeline, above the topmost track, I've got a yellow bar that I can drag back and forth to set where the timeline loops.
I can't for the life of me figure out how I did it, and how to get that in another new file I just made. How do I get the ability to loop the timeline????
Any input appreciated,
Thanks
Dan P.

Nevermind... I found the loop button down next to the play controls. D'oh!!!

Similar Messages

  • How does one loop playback of small selections within the timeline?

    How does one loop a selection of footage from within the timeline? I'm trying to edit students' tapping hands and pencils on desks into small timed chunks that will play back as seamless loops and I need to be able to slowly shorten or elongate sections of footage as it plays and repeates until the loop matches the timing of the song we are making. I'm using PE8 and can't seen to find an easy way to do this. Surely there is one! Is there?

    I appreciate the help everbody, but It looks like I didn't state my question effectively. Let me try again.
    It will be easier if I explain what it is I am used to. This is what I need to know how to do in PE8, because the school in which I teach AV has chosen PE8 for my classes and won't let me install anything else.
    In Sony Vegas - all versions, you can click and drag to quickly make a selection of video and audio. You can do this while video is rolling and you can then choose to have your A&V loop within this selection. I have seen replies on this forum where this feature within Vegas was treated as if it were a dumb thing. It's not dumb once you realize what it can be used to do for you. While continuing to loop within your slelection, you can move this selection throughout your timeline, rough tuning where you want your loop to be. If your loop needs to be exactly 66 frames, for instance, you could first set this selection at 66 frames and then move it up and down the timlene until you find the best place to cut. Or, in the case of trying to find where some sound within your selection makes a seamless loop, you can increase or decrease the size of your selection on the fly as the selection continues to repeat.
    How do you do that in PE8? If it can't do it, can the full version of Premiere?
    Thanks again for the help.
    -Chris

  • Anyway to loop specific parts of the timeline?

    Hey, is there anyway to loop SPECIFIC parts of the time line, the way you can in Motion, Logic and some other audio programs.  That would really be nice as you can make changes while you watch in REALTIME.
    Thanks

    I tried both.  First i simply used "A" Seclect tool to highlight the part of the timeline that I want to loop. That didn't work. The cursor just continued after the highlighted part. Then I sued "R" range slection tool and selected part of the clip/s in the timeline and again, the cursor just continued after the end of the selection.
    In logic and other programs, you can create a section on top of the timeline where you want the loop to be and it will loop from those points.
    Any other ideas of what to do?  Thanks again

  • Is there a way to collapse the timeline?

    I've been doing a lot of grading in DaVinci Resolve lately, and I really love the way it allows you to collapse the timeline and show only the monitor and your grading controls.  Is there any way to do this in Speedgrade?
    It's kind of silly that you can resize the grading area at the expense of monitor real-estate, but you can't get rid of the timeline!!!  I don't want to see the seven layers of video that I have.  I want to see what I'm working on!!!

    I've also "skipped over" and put in a request for a curves control. I want that as THE MOST IMPORTANT CHANGE TO SPEEDGRADE for me ... and yes, I'm shouting alright! 
    When I first started working in Sg, I thought those wheels were RAD-COOL-MARVY! Even went right out and got a good trackball so I can use the spinning wheel to do the luminosity and the ball for color changes. Yea, this was awesome!
    But then ... saw a few tutorials where the teach was using programs with curves options ... and um ... tried that within AE.
    Cool as the wheels are, working with a good-sized curve, one gets an amazing visual-feedback loop on what you're doing, and ... what you do, does. In fact, I was able to start predicting what any change I'd do would make, far above the ability I yet have working the wheels. There are times I've taken things to AE to do the color grade, simply because it was difficult footage and I'd do it better and faster using the curves controls. Even given the um ... less than perfect? ... application of scopes in AE.
    Now, back to the original topic ... yea, I think I'd better put in a request for a way to show/hide the timeline also ... much of the time, I don't have TIME to worry about the timeline! (yea, quoting Ms. Troi there). Having a larger monitor would be fantastic ... and no, I don't have the dollar bills sitting around right now to just go out and buy a nice 24" or better high-end monitor ... oh, yea, and a few hundred more for the nifty Nvidia graphics card Adobe insists we buy to do it with also ... sigh ...
    Neil

  • Dragging audio into the timeline

    hello, when I drag a loop from the loop library into a timeline in garageband, the loop will automatically play back at the tempo set up for the project, my question is will a file that is not from the loop library, either a third party loop or an audio file that I create also conform to the tempo set for the project, if I drag it into the timeline. thank you rb

    If you drag an external file into the timeline, it will be an orange region and will not follow tempo changes. To achieve that, you have to turn it into a purple region (press control-option-g and click anywhere in the timeline) and check the box "follow pitch & tempo".

  • Deleting alternate frames from the timeline

    Hi
    I have a movie which is made up of individual frames (like an
    old style cartoon animation), whereby each frame moves on a bit
    from the previous one and when viewed in Flash, looks like a movie.
    I want to remove some of the frames - probably every other
    frame to make the file size smaller. I can't find a way of doing
    this easily. I can select alternate frames using the 'Apple' key,
    but if I then go to Edit>Timeline>Remove frames or >Clear
    frames, it doesn't actually remove the frames I've highlighted.
    Am I missing something?
    Many thanks for any help.

    You will need to make a command.
    In Flash CS3 select a new JSFL file. Then add this code:
    (note:code is not tested, might contain typos)
    var frmCount =
    fl.getDocumentDOM().getTimeline().layers[0].frameCount;
    var curTimeLn = fl.getDocumentDOM().getTimeline();
    var curFrame =
    fl.getDocumentDOM().getTimeline().currentFrame;
    var stFrame = curFrame;
    for (i=0; i < (frmCount - stFrame)/2; i++) {
    curTimeLn.removeFrames(curFrame);
    curFrame += 2;
    The top section is just variables to make the code easier to
    write. The for loop simply goes through the timeline starting at
    the frame you have selected and deletes it and then moves two
    frames and runs again (deleting that frame) until it has reached
    the end of the timeline.
    Save this file with whatever name you wish to call this
    command ('twoFrame Remover'?), in your commands folder.
    C:\Documents and Settings\...your logon here...\Local
    Settings\Application Data\Adobe\Flash
    CS3\en\Configuration\Tools\commands
    After saving it, you should find it in your commands drop
    down menu item.
    If this does not remove the frames the way you want, you can
    simply undo the command and fix the code as you need it. If you
    know the number of frames you want removed, you can simply hard
    code the number instead of going all the way to the end of the
    timeline. Of course you will have to change the command every time
    you want to use it. But it is easy to play around with it and get
    what you want out of it. You can easily remove every 3rd frame, or
    4th frame etc. Just adjust the code and save it.
    Hope that helps.

  • Can a menu button loop a timeline?

    I need to make a timeline loop on a DVD. Normally I'd make the end action of the timeline point to the start of the timeline and it would loop. But client wants to give the option from a menu -- play the timeline through once, or loop it continuously. IOW, if once through the end action of the timeline is to return to the menu, and if continuous loop the end action is to return to the start of the timeline.
    Is this possible? If it is, how do I do it? Just for future reference, would it be possible on blu-ray?

    Two buttons.
    "Play once" goes to a playlist that contains only the one timeline. End action of playlist is the menu.
    "Loop" goes to the timeline. End action of timeline is the timeline.
    Edit. You can also do it  using an override.

  • Putting a marker on a track vs. on the timeline

    I am new to Audition, so I apologize if this is a dumb question.  Is there a way to mark a spot on a track, so that if you move the track on the timeline, that marker will stay with the track, rather than remaining in the same spot on the timeline?
    Thanks in advance!

    Hello Leonie, glad to see your reply. I have not done any podcast so far [actually have no idea also of what it is!]. I am currently using GB to do these things:
    1] making music compositions with apple loops which are imported into my FCPX projects via iTunes. These music clips are mostly used for background music purposes.
    2] I have made 5 audio albums so far and am making them into videos. Most of my songs are in my mother tongue viz. Telugu. I am now able to make versions of my songs in different languages in Garage band itself. After singing the song using my music track, I export it to FCPX via iTunes and bring out a different language version of the video. For this need of mine, I had need to place a marker on a music track to indicate the place where the vocal has to be sung, and it was here that I found that I was unable to place a marker.
    So, am I to understand that one can use a marker in GB only when you are doing a podcast? 

  • Is there a way to see all my compound clips created on the timeline, in the browser as an accessible thumbnail list....?

    I am facing a problem that
    due to big footage I first extracted the seemingly fine clips in chunks in one timeline in various layers which is still enormous for my RAM
    now I have to take out smaller and more appropriate bits from this timeline
    I have opened another timeline where I just copy paste the best shots from my previous enormous timeline and this works fine due to less media for 6gb RAM mac pro
    but it is really tedious to go back and forth to copy paste
    it would be so wonderful if I could extract those bits from the clips just like we do with any other new footage from the browser window with all the clips visible
    I think one way can be to export these compound clips seperately and import them as events into the browser but that would be a generation loss
    is there any other way.....? to view these compound clips infront of my eyes all at once or keeping all that footage on the timeline besides the finalising layer is the only option...?
    I am facing this rare problem because I'm editing a music video and no shot is more than 2 seconds and that too from several groups of footage that has to be mixed.....so all the data has to be visible to decide if a bit of guitar piece would look good here or drums or close up or long shot.....so everything has to be seen....can you suggest me a smarter workaround please ?

    Thank you.Ok say for e.g.
    500 video files imported in fcpx
    800 clips extracted from these obviously on the timeline and joined/compounded according to their content in say 15 layers according to 15 instruments used ,so now just to see the entire usable footage ....
    now one 7 minute song sequence has to be made where bits would be simultaneously taken from these 15 layers as all instruments are playing simultaneously
    these shots are not more than 2 secs each according to the beat........
    when I try to work with these 15 layers as well as the Final primary layer that I'm making in the same timeline my fcpx becomes slow
    but when I drag individual layer to individual timelines it is fine so that is the only option
    but now for every 2 second bit I have to go back to the 15 layered timeline and find one single suitable shot
    So I was wondering is there a way to be able to see these layers and clips on the timeline in the browser in a systematic fashion like the way we get with keywords  ?
    and keywords can only be used in the imported clips already in the browser ,and not after we drag it on the timeline.....
    Till now I think exporting and importing back is the only option ...but is there another work around ?

  • How to I get a marker name to show in the timeline?

    I must have done something to disable it, but I recall marker names displaying in the Timeline when a marker is selected. Now I have to open the marker to see the name. How to I re-enable the display so marker names show in the timeline?
    (Yes I looked in the FCP manual, but just try and find something like that in the PDF file!)
    thanks
    Scott
    Message was edited by: Scott Stark

    JR Steendahl wrote:
    Are the markers on the clips or the timeline?
    You might try view>show overlays
    They're on clips and on the timeline itself.
    Show Overlays does display them on the timeline (not in the Viewer), but it also displays in/out points and audio timecode. Is it all or nothing?
    thanks,
    Scott

  • "Program error" When I click on the timeline/motion controls or try to export/save as my animation. PS CC late 2014

    I have been working on an animation for an online ad. The file is 300 by 250. It's about 24 seconds long. I had completed and saved my work as a GIF file. I also saved some static JPGs of the animation. Everything was still working at this point. Then I closed Photoshop and reopened the PSD file to export it to a different format, but when I clicked on the time-marker in the timeline window or tried to edit my animation, I got this error message: "could not complete your request because of a program error." Watch the following video to see exactly what happens:
    I'm running Adobe Photoshop CC November 2014. I'm working on a PSD file, 24 seconds long, 30 fps.
    I looked in my library/preferances/adobe folder for photoshop's error log file. This is the error in that file:
    2014:11:12 18:30:17 : /Volumes/workarea/PS_15_Mac_Daily_Retail/20140730.r.148/photoshop/main/photoshop/sources/ ULinkManager.cpp : 1380 : REQUIRE failed
    Thank you so much for reading this. It sucks to work so long on an ad and then have this happen for seemingly no reason. Please help if you can.

    Looks like issues with some linked smart objects... You could try and copy/ move the whole shebang to another location in the hopes that it either fixes the issue or PS completely forgets the linked files completely so you might relink/ replace them.
    Mylenium

  • Not happy with moving around keys on the timeline

    I just changed from Final Cut to Premiere CS5.0 and I really like it. Working on a Macbook Pro i5 2.3GHZ, Mac OSX 10.7 But I am not happy with moving around on the timeline. I was used to using the up and down arrows to move to next video edit point, marker point or audio edit point. I tried everything to change it, highlighted the track etc. It only works together with the FN key, which is a bit uncomfortable. And then it definetely is not going to any audio edit points (very annoying!!!) and marker points (have to use Q and W keys). It makes me doubting if continuing with Premiere or not. Its such an esencial and easy to use tool while editing in a normal fast editing rythm. When I change it in the customize keyboard menu, into a Custom keyboard or FCP keyboard, it would ignore my changes on the arrowkeys, although it recognizes any other changes I do. Is it so complicate to change this issue in Premiere to how it is set in FCP? Its such an obvious tool, using the arow keys to move around, cannot beleive that we have to live with such a limitation. Please!!!

    Its such an obvious tool, using the arow keys to move around, cannot beleive that we have to live with such a limitation. Please!!!
    You dont have to live with that at all if you are fixed only to what you have previously done.
    It makes me doubting if continuing with Premiere or not.
    There ya go!

  • Text created in Premiere showing other text files in the timeline and exports.

    Hi,
    I'm creating slates with text generated in Premiere. For each new slate I am duplicating a text layer, Option + Dragging the duplicate file over the text I'd like to replace, then opening the new text layer in the text editor and updating the information.
    Things seem fine at first and then randomly text layers in the timeline will show text from other files in the timeline. If I open the text file up in the text editor I see the correct info but not in the timeline.
    The only fix I have found is to delete render files, move the text layer around in the timeline, quit and re-open. But still, sometimes when I export, the export preview window will show the wrong text and when I export the file I create shows the wrong text as well.
    It seems like Premiere is getting confused by multiple text files in the timeline and is pointing to the wrong cache files.
    Thoughts would be a huge help!

    Thanks for the tip Kevin. Anything I can do to avoid this in the future?
    I've had this happen on a number of projects. My media and project files are on a SAN, cache and previews are local.
    Thanks,
    Mike Brown
    P: (401) 743-7452

  • STRANGE: single clip missing in export! (but still in the timeline)

    Strangest thing: I exported a project... and a SINGLE clip is missing. BUT... the "key" over that clip shows up (over "black.") Hmmm... So I went back to the timeline... the clip is STILL THERE! So, I re-rendered, exported again... SAME THING. That one darned clip goes "black" w/ the key over it. Any suggestions?

    NOTE: Had no problem exporting this same project before.
    1.) even clip info = 720 x 480 / 29.97 fps (same as ALL clips throughout entire project)
    2.) Timeline info = 720 x 480 DV Anamorphic 29.97
    3.) Here's the clip in the timeline. (see image, it's the gentleman in the labcoat) Amazingly, in the export the "keys" appear over black. Just this ONE clip is missing--audio and video. No other clips are affected.
    4.) Finally, here is how I am exporting the project: (see image)

  • Greetings, I am working in Final Cut Pro 7. In the timeline some clips show as offline. I tried going to sequence and reconnecting to media but it does not work. I can still see the video in the timeline and work with it. It just has the red box.

    Greetings, I am working in Final Cut Pro 7. In the timeline some clips show as offline. I tried going to sequence and reconnecting to media but it does not work. I can still see the video in the timeline and work with it. It just has the red box. Thanks! Olga

    If the clips are not actually missing, you could try to refresh the timeline by using cmd-0 and then going to the timeline options tab. Then select name only where it says "thumbnail display". Press ok to accept the change, then repeat the process to add thumbnails back to your timeline.

Maybe you are looking for

  • How can I change the language of a block of text

    Hi, Working in a bilingual environment, I am constantly switching languages as I write e-mail. Using Mail 3.5, if I forget to change the dictionary language before I start writing, Mail logically marks most words as spelled incorrectly. After having

  • Inserting PDF inc. comments as an Object in MS Excel

    Hi, I created a PDF document (Adobe Acrobat Standard 9) including a text box comment in that PDF. When I try to insert this document in a MS Excel Spreadsheet by using "Insert --> Object --> Adobe PDF Document" the inserted PDF in Excel does not show

  • Oracle 10g - database express edition

    hey all, im new to this who Oracle world and would like to find out why is there pre made tables and views in my database? what do they do and can I drop them or create a new database to work with. Regards, oz.

  • My Apple TV never completes a download.

    My apple tv used to work fine but now when I try to rent or buy a movie, all I get is the downloading icon spinning endlessly.  The download status bar does not show.  I have it set on low resolution.  Your suggestions as to the problem and a solutio

  • Adobe flash plugin crashes when I open Frontierville in Facebook

    9 out of ten times that I open Frontierville in Facebook I get an error that says "Adobe Flash plugin has crashed". I have reinstalled the plugin numerous times. I cleared my cache. Finaly, after 2 days of this I uninstalled and reinstalled both Fire