Why can't I see my video in the timeline?

I can hear the audio but can't get the video to play in the time line, how can I get it to show in the source window?

Have you used one of these methods to create a Sequence?
Be sure that your Sequence settings match your footage by doing this:
Or, right-click a media file and select 'New Sequence From Clip".
How do I choose the right sequence settings?
http://www.video2brain.com/en/lessons/how-do-i-choose-the-right-sequence-settings
http://forums.adobe.com/thread/1285921

Similar Messages

  • Why can't I see my videos on the computer?

    I connect the iPod and I can play all songs on my computer, I can also hear the sound of the video but I can't see it I just see some green colore blinking on the screen... I have iTunes 7... can some one help please?

    Andy,
    You will need to do roughly the following :
    Install CAM on a host of your choice to manage the array.
    Assign an IP address to the array using the serial management interface (or DHCP)
    Register the Array's IP address with CAM.
    Connect the Hosts fibre card(s) to the array host ports
    Install the HBA drivers on the server you want to connect.
    In CAM you will need to create initiators for the HBA ports. (Do you have a domain license or are you going to use the global domain?)
    Create a host in CAM for the initiators.
    Create a Virtual Disk
    Create a Volume on the Virtual Disk
    Map the volume to the host you defined before
    You will also need multipathing software installed if you have more than one fibre connection from the host.
    Take a look here on docs.sun.com for more info on CAM. http://docs.sun.com/app/docs/doc/821-1425-10
    Scott.

  • Why can't I see still images in the playback monitor when editing a video?

    Why can't I see still images in the playback monitor when editing a video? I have rendered the images in the project.  I checked my system to make sure it meets all the requirements for the software, no problem there.  When I "share" the project and save it as an MPEG, the images show up in WMP just fine.  But I need to be able to see what I'm doing to the stills while I am editing.  Help!

    Gordon
    Many thanks for the reply with the details.
    But, the key is missing...what version of Premiere Elements are you using? Are you using Premiere Elements 10?
    I hope not in this case, but if you are, we will tell you what needs to be done. The following is a copy/paste of the Announcement
    at the top of this forum about the Premiere Elements 10/NVIDIA GeForce issue.
    Premiere Elements 10 NVIDIA Video Card Driver Roll Back
    If you are a Premiere Elements 10 user whose Windows computer uses a NVIDIA GeForce video card and you are experiencing
    Premiere Elements 10 display and/or unexplained program behavior, then your first line of troubleshooting needs to be rolling
    back the video card driver version instead of assuring that it is up to date.
    Since October 2013 to the present, there have been a growing number of reports about display and unexplained workflow
    glitches specific to the Premiere Elements 10 user whose Windows computer has a NVIDIA GeForce video card. If this applies
    to you, then the “user to user” remedy is to roll back the NVIDIA GeForce video card driver as far as is necessary to get rid of
    the problems. The typical driver roll back has gone back as far as March – July 2013 in order to get a working Premiere
    Elements 10. Neither NVIDIA nor Adobe has taken any corrective action in this regard to date, and none is expected moving forward.
    Since October 2013, the following thread has tried to keep up with the Premiere Elements 10 NVIDIA reports
    http://forums.adobe.com/thread/1317675
    Older NVIDIA GeForce drivers can be found
    http://www.nvidia.com/Download/Find.aspx?lang=en-us
    A February 2014 overview of the situation as well as how to use the older NVIDIA GeForce drivers for the driver roll back
    can be found
    http://atr935.blogspot.com/2014/02/pe10-nvidia-video-card-roll-back.html
    Looking forward to your reply.
    Thank you.
    ATR

  • Why can I only see 1 video at a time on my touch 4g?

    Why can I only see 1 video at a time on my iTouch 4g?  I have 3 in my iTunes library, but when I download a new one, the earlier one disappears from my touch when I sync.

    It was most likely filled-in and saved with the Preview application on the Mac. For more information on why this is happening, see: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html

  • Why can't I see full reviews in the App Store?

    Why can't I see full reviews in the App Store? Every review that is longer than 6 lines has three dots, indicating more, but nowhere to click to see the rest of the review.

    Thank you.  I only saw the word "More" on one review of one app that I looked at, and I knew to click on that. But many reviews of several apps had three dots at the end of the sixth line without the word "More".  And it was obvious there was more written because it was, for example, left in the middle of a sentence.

  • In PE 9 why don't I see scene stills in the timeline?

    I posted earlier & now thought of the term to use. I don't have the stills of a video in the timeline that I did in PE 7.  Is this something new in 9? It makes it hard to find sections of a video to work on!

    shabby59
    Premiere Elements 7 and 9.0/9.0.1 are essentially the same with regard to import and Timeline viewing so I do need more information.
    1. What do you mean by "stills of video"? Are you referring to thumbnails (frames of a video as displayed on the Timeline tracks of the Timeline view or Scenes in the Filmstrip of the Sceneline view? Even though you do say "timeline", please verify if you are working in Timeline or Sceneline view.
    2. Now I just had an idea of what you ran into. Check this out. In Premiere Elements 9.0/9.0.1 there is a new handling of the tracks. There is an opened and closed version. To open a track that you are used to seeing opened all the time in version7, you need to click on the triangle at the left edge of the track, moving it from facing right to facing down.
    The more I think of it, the more I think that is to what you are referring.
    We will be watching for your reply. If the above is not the explanation, we will look into this further.
    Thanks.
    ATR

  • Why can't I see a video that is on my ipad in an explorer window of my pc?

    Why can't see a video that is on my ipad when i use explorer on my pc

    You cannot normally directly access the file system on an iPad (or any other iDevice) from the PC or Mac like to view a video or listen to music. You'll have to connect the iPad to the PC using iTunes and sync the video to the PC to view it on the PC.

  • Why can't I see these results in the results grid

    If I run the pl/sql below as a script F5 I can see the results of the "select * from TestOutput", but If I execute it with F9 I don't see any results in the results grid. Anybody know why? Thanks in advance for any help.
    CREATE TABLE TestOutput (val1 varchar2(50), val2 varchar2(255) , numval1 NUMBER, numval2 NUMBER);
    DECLARE
    SomeText VARCHAR2(255);
    BEGIN
    SomeText := 'Hello';
    INSERT INTO TestOutput VALUES ('yadayada', SomeText, 1, 1);
    INSERT INTO TestOutput VALUES ('yadayada', SomeText, 2, 2);
    INSERT INTO TestOutput VALUES ('yadayada', SomeText, 3, 3);
    END;
    select * from TestOutput;
    drop table TestOutput;

    I think that you he is executing all the commands of a time, selecting everything and click in F9 or F5.
    If he will be this, this behavior is correct.
    Ps.:
    F5 - scripts.
    F9 - alone statements (not to be that they are separate for semicolons).

  • Why can't I see my podcast in the iTunes store

    When I click on the link provided by Apple I see my podcast in the iTunes store, but when I just try to drill down to it through the iTunes menus I can't find it. I've noticed that there seems to be a maximum of five pages of podcasts for each category. Does this mean that there are other podcasts out there that you just can't get to without doing a search or something?

    Run Software update from the Apple menu or update yrou signature (it shows 10.8.2).
    What country store?

  • Why can't I drag a clip into the timeline?

    I just loaded PP CD5 onto my Win 7 laptop.  I can import movie clips into my project, but I can't drag any of those clips into the timeline.  When I try to drag them, I get a hand with a "do not enter" symbol.  No error messages of any kind.
    I vaguely remember having this same issue when I loaded PP CS5 on my Win 7 desktop several months ago, and I thought I found something on the forums that told me how to fix it, but I can't find it now.  Perhaps a change in the preferences?
    Any assistance is greatly appreciated.

    Did you actually create a sequence? If not, go to File > New > Sequence, or drag one of your clips to the New Item icon at the bottom of the Project Panel. You can also click that to get the New Sequence option.

  • Why can't I see streamed video from PC to IPad 1 on TV when using HDMI adapter but can watch videos stored on the iPad

    I can watch videos streamed from my PC to my IPad 1 on the iPad screen.
    I can watch videos on my TV which are stored on the Ipad using an HDMI adapter.
    I cannot watch videos streamed  from my PC to my Ipad on my TV using the HDMI adapter, I get sound but no picture although the picture shows on the Ipad screen.
    Can anyone tell me why this should be and whether there is a solution?

    How does one "flatten the annotations? Do you need Acrobat to do it? Can you do it on the pdf or do you have to change it to a word doc?

  • Why can I not watch a video all the way thru without it stopping and starting, & freezing?

    I like to go to abc or cbs pbs etc. and watch their videos but they do
    not run all the way thru. They stop and start and stop and start and
    freeze and start and quit.

    If there are problems with updating then best is to download the full version and uninstall the currently installed version.
    Download a fresh Firefox copy and save the file to the desktop.
    * Firefox 5.0.x: http://www.mozilla.com/en-US/firefox/all.html
    * Uninstall your current Firefox version.
    * Do not remove personal data when you uninstall the current version.
    Remove the Firefox program folder before installing that newly downloaded copy of the Firefox installer.
    * It is important to delete the Firefox program folder to remove all the files and make sure that there are no problems with files that were leftover after uninstalling.
    Your bookmarks and other profile data are stored elsewhere in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder] and won't be affected by a reinstall, but make sure that you do not select to remove personal data if you uninstall Firefox.
    It is possible that there is a problem with the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    Delete the files sessionstore.js and sessionstore.bak in the Firefox Profile Folder.
    * Help > Troubleshooting Information > Profile Directory: Open Containing Folder
    * http://kb.mozillazine.org/Profile_folder_-_Firefox
    * http://kb.mozillazine.org/sessionstore.js
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    Deleting sessionstore.js will cause App Tabs and Tab Groups to get lost, so you will have to create them again (make a note).
    See:
    * http://kb.mozillazine.org/Session_Restore
    Some have reported that increasing the session store saving interval worked for them.<br />
    See:
    * http://kb.mozillazine.org/browser.sessionstore.interval
    To open the <i>about:config</i> page, type <b>about:config</b> in the location (address) bar and press the "<i>Enter</i>" key, just like you type the url of a website to open a website.<br />
    If you see a warning then you can confirm that you want to access that page.<br />
    You can use the Filter bar at to top of the about:config page to locate a pref more easily.

  • Why can't I see my media in the left sidebar when using finder?

    I recently made the switch to Mac and I have some confusion. When using finder, I am not getting an option to browse through my media such as photos, videos and music. How do I get these folders to appear on my sidebar?
    Thankyou.

    N8 Thomas wrote:
    I then went into my finder preference section and changed my "New finder window show" to my computer's name.  At that point I could view and find anything within it.  this part got the job done. 
    "You don't, they only appear in open file dialogs and in tool panels like in iMovie, iPhoto.
    To view your media, you open the app that you use to manage that type of media." this on the other hand was zero help
    What you did doesn't show the Media Browser. It just shows the folders where your media is stored. You may be correct that was all that cobacc wanted. 
    The Media Browser shows the actual media in thumbnails so that you can preview the media.
    However, neither requires any Sharing services to be enabled.

  • Why can't i see my files in the bookmark folders in safari

    I can see my folders in my Safari bookmarks but now I can't see the files in the folders.  What have I done????

    As you can see I have folders in the bookmarks categories.  Each folder has multiple files in it.  Previously I could open the folders on the side and choose a bookmark to go to.  Now, I can open the folder and I have to scroll through the files on the screen.  Did I change some setting that I can't find?

  • Why can't I see audio waveforms on my timeline?

    Hi,
    I was just upgraded to CS6 Production Premium from CS5 and I can't see any audio waveforms on my timeline in Premiere Pro. Is there some setting I need to change?
    Thanks.
    S.

    There's no setting for this.
    Have you waited for all media to finish conforming?

Maybe you are looking for

  • Printing problem with .pdf

    27" iMac (2012), OS X 10.9.1, Canon MF4770n laser connected by ethernet cable through AirPort Extreme, HP C4200 connected directly via USB The Problem:  I received a .pdf file via e-mail and downloaded it.  It consisted of a series of forms in unknow

  • Query performance while migrating from 9i to 11G

    Hi, We've one production application with version 9.2.0.6 and migrating to 11g release. At present we're having a lot of queries in our 9i database which are using the cost based optimizer. Just wanted to check if we move all the cost based queries f

  • Unicode support in java.io.File.listFiles()

    I am trying to list all the files in a given directory using the File.listFiles() method, yet for some reason the File objects returned have invalid paths when a file has unicode characters in its filename. example .. a test directory has these files

  • Relationship between "open" parameters and argv

    I'm coming from the Linux world, where the command-line arguments passed to a program show up in main()'s argv parameter. I ported my app to OS X. It has a GUI, so I built it as a .app using CMake's MACOSX_BUNDLE option. The actual executable program

  • How to use labview to control the horizonal menu of TDS420A?

    Hellow! anyone can tell me how to control the horizonal menu of TDS 420A osilloscope? currently,i use "TKTDS 420A config.Horiz.VI and TKTDS readwaveform.VI to control the horizonal menu,i would like to control the delay time to get a specific part of