Help with video lanes

Hi guys,
I have a new ATI card, but cant figure out to access the mac pro to see if it is using the full 16x video lanes? How can I make sure. I like it, but I just want to make sure I am not missing that it isnt getting the full power?
Thanks
Mo

Unless you've changed something only Slot 1 is capable of, and is set to, 16x. You can use the Expansion Slot Utility that Michealworks pointed to to confirm this.
Your new ATi card should go into slot 1.

Similar Messages

  • Need Help With Video In Flex Mobile

    Hi,
    I have been searching quite a bit for information on this and have found really nothing useful for my problem. So far, I've converted the actionscript code posted here: http://www.adobe.com/devnet/flash/articles/osmf-media-player.html
    to work within my ios mobile project. The problem is that no matter what I have tried, I can hear the video but not see it. That codes uses the OSMF framework, which uses StageVideo I think, so I've tried setting the application background alpha to 0 as has been posted about; still no video though. The project is also set to use direct rendering. I've even tried some bare bones AS code to implement the StageVideo, as others have posted here, but still same thing. So can anyone either show me a working example or provide any suggestions on what I might be doing wrong?
    thanks

    Hi, Keith Lee -
    I'm sorry that I cannot help with your problem, but I'm posting a few URLs that may perhaps help - 
    Working with video: http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7e1a.html
    Getting started with stage video: http://www.adobe.com/devnet/flashplayer/articles/stage_video.html
    Stage video articles and tutorials: http://www.adobe.com/devnet/flashplayer/stagevideo.html
    ActionScript reference: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageVideo. html
    Thanks,
    Mallika Yelandur
    Adobe Community Help & Learning

  • Help With Video Pop Up Window.

    Hi there Im very new to web design so please understand that I am a complete novice, so my understanding is limited. Any help would be most appreciated.
    Could anyone provide me with a piece of code I can put into the HTML snippet function that will allow me from a hyperlink that says "video" to open up this Vimeo video (see below) in a new window that is the exact dimensions of the given video.- Almost like a pop up.
    Many thanks to any help,
    - preferably I want the appearance of the video to be like the embedd code below regulates: to not include any additional text etc.
    <object width="255" height="143"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://vimeo.com/moogaloop.swf?clipid=8695239&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;showportrait=0&amp;color=0&amp;fullscreen=1" /><embed src="http://vimeo.com/moogaloop.swf?clipid=8695239&amp;server=vimeo.com&amp;show_title=0&amp;show_byline=0&amp;showportrait=0&amp;color=0&amp;fullscreen=1" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="255" height="143"></embed></object>
    also here is the link to the original page http://vimeo.com/8695239
    Thanks again, Robin.

    On this page you'll find code to open a page with video in a new window :
    http://www.wyodor.net/MoreEmbed/
    Click where it says :
    Here's a basic sample page with shaded background you can use for testing.
    Click to open a window with the pop-up code.

  • HELP WITH VIDEO FILES AND PUTTING ON ITUNESSS!!!!!!!!!!

    hey...i need help with my video ipod and itunes....i recently had sum problem with my ipod and i had to restore it...and when i hooked it up to itunes all the songs got back on it...its just that the videos never got updated with the songs....the videos are converted and were workin fine....now when i select the folder to put it into the itunes it says processing and nuttin happens...this is drivin me crazy anyone know how to fix this ****??
    THX
    5g ipod video    

    ok...i just uninstalled itunes and installed the previous version...and it worked fine....

  • NEED HELP WITH VIDEO SOUND PLS

    just bought a 30 GB ipod, updated itunes to make the videos compatible. uploaded 3 music videos, they work perfect except they have no sound. dont know what the problem is. i havent' restarted my compute yet, maybe that's it but i highly doubt it. anyones opinion would be highly appreciated. thanks for your help guys.
    -MIKE

    Neither Quicktime Pro or iTunes have the ability to successfully encode a muxed video file with audio. You'll end up with video and no audio.
    You'll need to use some other third-party software to do the conversion. There's a handful of software available. Just search the forums and you'll find many titles mentioned.
    Videora iPod Converter seems to be popular amongst Windows users, although I've read that you might get mixed results using it.

  • Need help with video-scroll

    Hello,
    I need some help with a project. What I eventually want is that a webcam controls the mouse position and the mouse position
    controls a video. But first I would like the part where the mouse position controls the video.
    So if the mouse is on the left on your screen the video will be at the first frame and when you move you're mouse to
    the right the video will play accordingly to the movement. and stop when the mouse is all the way to the right.
    Effectivly the mouse scrolles through the video. It only needs to be on the x-axis.
    I'm not that formilliar with flash so any help would be great
    Thx!
    Thijs

    I fixed it in an other way.
    Made a imgseq and following code (with some help ):
              stop();
              stage.addEventListener(Event.RESIZE, resizeHandler);
              stage.addEventListener(FullScreenEvent.FULL_SCREEN, resizeHandler);
              stage.addEventListener(MouseEvent.MOUSE_MOVE, inputHandler);
              stage.scaleMode = StageScaleMode.NO_SCALE;
              stage.align = StageAlign.TOP_LEFT;
              var imgSeq:ImgSeq = new ImgSeq();
              var columnWidth;
              var numColumns;
              stage.addChild(imgSeq);
              imgSeq.x = 350
              imgSeq.gotoAndStop(1);
              columnWidth = stage.stageWidth / imgSeq.totalFrames;
              numColumns = stage.stageWidth / columnWidth;
              function resizeHandler(e:Event):void {
              // verdeel het scherm in kolommen, iedere keer dat het scherm geresized wordt.
                        // breedte van 1 kolom (schermbreedte gedeeld door aantal plaatjes)
                        columnWidth = stage.stageWidth / imgSeq.totalFrames;
                        // totaal aantal kolommen dat binnen het scherm past (breedte gedeeld door breedte van één kolom )
                        numColumns = stage.stageWidth / columnWidth;
              function inputHandler(e:MouseEvent):void {
              // voer dit iedere keer dat je de muis beweegt uit.
                        // kijk voor iedere kolom of de muis er binnen valt.
                        for(var i = 1; i <= numColumns; i++){
                                  //vergelijking die checkt of de muispositie binnen de waarden van kolom valt.
                                  if(mouseX <= i * columnWidth && mouseX >= (i * columnWidth) - columnWidth ){
                                            // zet het framenummer van de imageSequence gelijk aan de huidige kolom.
                                            imgSeq.gotoAndStop(i);
    many thx!

  • Need help with video problems

    Hi!
    Back in May I was having problems with video on my Mac. I was helped by this site and am hoping for more help. I downloaded the realaudio, but was still having problems. I assumed because I was on dial up. It was so slow. It would take forever to load and then play for a few minutes then need to load some more. I now have DSL and was looking forward to kissing the video problems good-bye! My new problem is that when I try to watch or listen to anything like innertube it "stutters." Is there something else I should be doing? How can I fix this problem?

    With those specs you should be absolutely fine. I would suggest that you update to 10.4.10 at least (download the full Combo updater). Once you are on that:
    These are the downloads and the settings you need in order to view/hear pretty much everything that the net can throw at you: The setup described below has proved repeatedly successful on both PPC and Intel macs, but nothing in life carries a guarantee!
    It is known to work in the great majority of cases with Safari 3.0.4, QT 7.3 and OS 10.4.11. (If you are running Leopard, ensure that all plug-ins have been updated for OS 10.5)
    Assuming you already run Tiger versions OS 10.4.9 or above (this has not yet been verified with Leopard) and have Quicktime 7.2 or above, and are using Safari 2 or 3, download and install (or re-install even if you already had them) the latest versions, suitable for your flavor of Mac, of:
    RealPlayer 10 for Mac from http://forms.real.com/real/player/blackjack.html?platform2=Mac%20OS%20X&product= RealPlayer%2010&proc=g3&lang=&show_list=0&src=macjack
    Flip4Mac WMV Player from http://www.microsoft.com/windows/windowsmedia/player/wmcomponents.mspx (Windows Media Player for the Mac is no longer supported, even by Microsoft)
    Perian from http://perian.org/
    Adobe FlashPlayer from http://www.adobe.com/shockwave/download/download.cgi?P1ProdVersion=ShockwaveFlash
    (You can check here: http://www.adobe.com/products/flash/about/ to see which version you should install for your Mac and OS. This: http://www.macworld.co.uk/news/index.cfm?email&NewsID=19845 may also interest you.)
    In Quicktime Preferences, under advanced, UNcheck Enable Flash, and under Mime settings/Miscellananeous only check Quicktime HTML (QHTM).
    See also the very informative post from QuickTimeKirk dated Dec 3, 2007 in this thread: http://discussions.apple.com/thread.jspa?threadID=1268489&tstart=0
    In Macintosh HD/Library/Quicktime/ delete any files relating to DivX (Perian already has them).
    Now go to Safari Preferences/Security, and tick the boxes under Web Content (all 4 of them).
    Lastly open Audio Midi Setup (which you will find in the Utilities Folder of your Applications Folder) and click on Audio Devices. Make sure that both Audio Input and Audio Output, under Format, are set to 44100 Hz.
    Important: Now repair permissions and restart.
    The world should now be your oyster!
    You should also consider having the free VLC Player from http://www.videolan.org/ in your armory, as this plays almost anything that DVD Player might not.

  • Help with video in Flex - Alternative to embedding .flv?

    I'm building a Flex application that needs to play a video, which I have in .flv format.  I tried the mx:VideoDisplay component, and it was great, but, unfortunately, I need to be able to package the entire application into a single file, and Flex doesn't support embedding .flv files.  Next I tried converting the .flv to a .swf, embedding that, then using mx:SWFLoader to display it.  This worked, except that I can no longer control the video playback; the video just keeps endlessly looping.  I need to be able to stop the video, and ideally I would like access to something like the complete event from mx:VideoDisplay, so that I can hide the video when it has reached the end.
    I have tried a couple of solutions based around the idea that the content of the .swf can be treated as a MovieClip, but none of these worked for me.  Any ideas?

    Hi, Keith Lee -
    I'm sorry that I cannot help with your problem, but I'm posting a few URLs that may perhaps help - 
    Working with video: http://help.adobe.com/en_US/as3/dev/WS5b3ccc516d4fbf351e63e3d118a9b90204-7e1a.html
    Getting started with stage video: http://www.adobe.com/devnet/flashplayer/articles/stage_video.html
    Stage video articles and tutorials: http://www.adobe.com/devnet/flashplayer/stagevideo.html
    ActionScript reference: http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/media/StageVideo. html
    Thanks,
    Mallika Yelandur
    Adobe Community Help & Learning

  • Please help with video streaming

    I'm trying to play a video on a web page. I got the below
    script from
    a website tutorial, but it does not work correctly. The
    script will
    play a video in both IE and firefox browsers, but in IE, it
    will not
    show the video player controls even though I have added more
    than
    enough height.
    <OBJECT ID="MediaPlayer" WIDTH="208" HEIGHT="300"
    CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
    STANDBY="Loading Windows Media Player components..."
    TYPE="application/x-oleobject">
    <PARAM NAME="FileName" VALUE="videofilename.wmv">
    <PARAM name="autostart" VALUE="true">
    <PARAM name="ShowControls" VALUE="true">
    <param name="ShowStatusBar" value="false">
    <PARAM name="ShowDisplay" VALUE="false">
    <EMBED TYPE="application/x-mplayer2"
    SRC="videofilename.wmv"
    NAME="MediaPlayer"
    WIDTH="208" HEIGHT="300" ShowControls="1" ShowStatusBar="0"
    ShowDisplay="0" autostart="1"> </EMBED>
    </OBJECT>

    That is an older site but there is a lot of information there
    8)
    John Malone
    =========
    "Canned Heat" <[email protected]> wrote in message
    news:[email protected]...
    |A followup. The site you linked to (mediacollege) does have
    a wealth
    | of info. However, for anybody else reading this post I did
    want to
    | point out that it is the same site is where I got the
    script (in my
    | original post) that didn't work. It was located here:
    |
    |
    http://www.mediacollege.com/video/format/windows-media/streaming/index.html
    |
    | So I would recommend using Joh's much simpler script, not
    the one from
    | mediacollege referenced above.
    |
    | Again, thanks John.
    |
    |
    |
    | On Fri, 23 Mar 2007 11:06:56 -0500, "John Malone" <John
    Malone@no
    | spam.com> wrote:
    |
    | >Well I couldn't get it to work in IE7..
    | >And you get the prompt to "click here to activate this
    control"
    | >here is a sample >
    | >
    | >
    http://www.xmas-i-am.com/test/video2.htm
    Autoplay when page loads.
    | >
    | >If you look at the source code on the page you will see
    I am using an external script
    | >file...
    | >This takes care of the outlined player (in IE) with the
    prompt to "click here to
    | >activate".
    | >By changing the script you can load the page without
    starting the movie.
    | >
    | >Like this..>
    | >
    http://www.xmas-i-am.com/test/video.htm
    | >
    | >Steal the code and the script (test.js or auto.js) and
    your good to go...
    | >
    | >Or look at .....>
    | >
    | >
    http://www.midistudio.com/MPlayer9/index.htm
    | >and read how......
    | >This is mostly for MIDI music but can work with video
    with minimal modifications.
    | >
    | >Also here is a good site...
    | >
    http://www.mediacollege.com/video/streaming/formats/
    | >You will need to follow the links>> to get a
    wealth of information.
    | >
    | >Hope this helps...
    | >
    | >Just an after thought...
    | >
    | >Beware of bandwidth limitations of your site this could
    cost you money!!!
    | >
    | >On that sample site(at the top) is a movie (1.3 Megs)
    that is viewed enough to cause
    the
    | >usage to be about 3 Gigs a month. (now)
    | >But at times (September) that goes up to 10~20 Gigs and
    at it's peak I had 17 Gigs a
    week
    | >usage.
    | >(It is the 911 Flash movie)
    | >
    | >Hope this helps......
    | >
    | >John Malone
    | >===============
    | >"Canned Heat" <[email protected]> wrote in message
    | >news:[email protected]...
    | >| Thanks for taking the time to test it. I want to make
    sure, tho, that
    | >| we're not talking about two different things.
    | >|
    | >| The script plays videos fine for me too. However, the
    problem is that
    | >| when playing with IE the video controls such as play,
    pause, etc are
    | >| not displayed.
    | >|
    | >| When you played it did you see the controls in IE?
    | >|
    | >| I have tested it on three machines, ones with the
    same IE version as
    | >| yours, and I get no controls. I only see the controls
    in firefox.
    | >|
    | >| Thanks,
    | >| -Dan
    | >|
    | >|
    | >| On Thu, 22 Mar 2007 15:48:02 -0500, "Eugene J. Maes"
    | >| <[email protected]> wrote:
    | >|
    | >| >Your script works fine in ie 6 with my wmv file.
    | >| >
    | >| >gene
    | >| >"Canned Heat" <[email protected]> wrote in
    message
    | >|
    >news:[email protected]...
    | >| >> I'm trying to play a video on a web page. I
    got the below script from
    | >| >> a website tutorial, but it does not work
    correctly. The script will
    | >| >> play a video in both IE and firefox
    browsers, but in IE, it will not
    | >| >> show the video player controls even though I
    have added more than
    | >| >> enough height.
    | >| >>
    | >| >> <OBJECT ID="MediaPlayer" WIDTH="208"
    HEIGHT="300"
    | >| >>
    CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95"
    | >| >> STANDBY="Loading Windows Media Player
    components..."
    | >| >> TYPE="application/x-oleobject">
    | >| >> <PARAM NAME="FileName"
    VALUE="videofilename.wmv">
    | >| >> <PARAM name="autostart" VALUE="true">
    | >| >> <PARAM name="ShowControls"
    VALUE="true">
    | >| >> <param name="ShowStatusBar"
    value="false">
    | >| >> <PARAM name="ShowDisplay"
    VALUE="false">
    | >| >> <EMBED TYPE="application/x-mplayer2"
    SRC="videofilename.wmv"
    | >| >> NAME="MediaPlayer"
    | >| >> WIDTH="208" HEIGHT="300" ShowControls="1"
    ShowStatusBar="0"
    | >| >> ShowDisplay="0" autostart="1">
    </EMBED>
    | >| >> </OBJECT>
    | >| >
    | >|
    | >
    |

  • Need help with video uploading in flex 4

    hey guys... so i need to create a video uploading application... with video chunking...
    basically i need to break up the video file (may be 1Gig or more in size) in pieces and send it to the server using a method i call from my webservice...
    any ideas??
    i believe this process is called chunking... not sure how to do this...
    thank you very much in advance!!!

    dude. some time itunes just doesnt support drag and drop techniques . just try the simple copy and paste(ctrl(c+v)). if that file is gonna be played on the ipod u get a small tab box in the itunes that the file which u r copying is being processed .
    even if this technique doesnt work , then thats a faulty format . u can try another video converter . say videora or Aplus video converter . u will find them in www.download.com

  • Need help with Video Categories Movies, Music Videos, ETC.

    Is there anyway to put ripped videos into other categories besides just Movies? I would like to put some of them under Music Videos, is that possible?

    Neither Quicktime Pro or iTunes have the ability to successfully encode a muxed video file with audio. You'll end up with video and no audio.
    You'll need to use some other third-party software to do the conversion. There's a handful of software available. Just search the forums and you'll find many titles mentioned.
    Videora iPod Converter seems to be popular amongst Windows users, although I've read that you might get mixed results using it.

  • Need help with video installation

    Hi,
    I'm no DW guru, as I know just enough to do some damage... so I did
    Anyhow, I am trying to install a video into my (ahem) purchased responsive web template, but each time I try a new approach, I keep getting "Invalid Source" when I "F12" it  -- Any Ideas?

    It might be better to test video in a plain, unstyled web page first to ascertain exactly where your problems are.
    Below is all the code necessary for a responsive HTML5 video player.  Change YourVideo.mp4, .ogv and .webm to your actual path & video file names. 
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>HTML5 with Video</title>
    <!--[if lt IE 9]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
    <![endif]-->
    <style>
    video {width:100%;}
    </style>
    </head>
    <body>
    <!--IE8 End of Life-->
    <!--[if lt IE 9]>
    You're using an outdated browser that limits your web experience. 
    Please upgrade to a modern browser.
    <![endif]-->
    <!--begin video-->
    <video controls>
         <source src="YourVideo.mp4" type='video/mp4' />
          <source src="YourVideo.webm" type='video/webm' />
          <source src="YourVideo.ogv" type='video/ogg' />
    </video>
    <!--end video-->
    </body>
    </html>
    Nancy O.

  • Need Help With Videos on Zen V P

    I need help putting videos on my Creative Zen V Plus. I convert them to avi using Super Converter and I drag and drop them into the folder for the videos on my zen. When I turn on my Zen and go to the videos the video is there however when I try to play it it says video format not supported.

    Original?Creative software after internet upgrades easy convert any video to Zen format and automaticaly transfere it to player.

  • Help with Video issues

    I am not sure what forum to post this all in , but here goes.
    Me and my wife have just gotten ourself a Imac *first time Mac users* and we have been having problems getting the bootcamp part of all of this to work for us (which was the selling factor to us to go mac)
    we installed everything and a game to test this out , the sims 2. when opening it up we had screens that went black so we looked up to see if we could figure out the problem on the sims 2 website. the site told us that we basically needed to update our drivers ... well this is where the problems began.
    upon installing the Ati drivers it deleted the old ones and now windows looks like crap and will not do a thing . in the direct X area its not even looking like we have a video card at all. Anyways could anyone tell us how to get our drivers back and possibly how to update them to a point where i could possibly run this game (or more perhaps) . and explain it perhaps in a way that the computer stupid could get (that would be me).
    we are on the leopard bootcamp if that helps and this is the video card info if that helps too Chipset Model: ATI,RadeonHD2600
    Type: Display
    Bus: PCIe
    PCIe Lane Width: x16
    VRAM (Total): 256 MB
    Vendor: ATI (0x1002)
    Device ID: 0x9583
    Revision ID: 0x0000
    ROM Revision: 113-B2250F-212
    EFI Driver Version: 01.00.212
    Displays:
    iMac:
    Display Type: LCD
    Resolution: 1920 x 1200
    Depth: 32-bit Color
    Built-In: Yes
    Core Image: Hardware Accelerated
    Main Display: Yes
    Mirror: Off
    Online: Yes

    Hi,
    I got the same problem with my new imac. I haven't been able to correct it but a lot of people did.
    Follow this link. it might help.
    http://discussions.apple.com/thread.jspa?messageID=5845494&#5845494
    Ricardo

  • Help with Video camera lock ups on K7N2 delta

    hi everyone,
    finally got new computer working after formatting and reinstalling windows and the bare minimum of software.
    but a small problem arose after drivers from supplied CD Rom installed my Sony DV camera locks up.
    i haven't even installed any video editing software yet.
    before installing drivers, when i double clicked the camera icon in my computer it gave me access to the camera i.e i could press play on the camera and view it on the computer.
    now since the drivers have been installed the message that i get is 'please wait while device initializes'.
    then  'program not responding' is displayed.
    my configuration is
    K7N2 delta
    AMD XP2000+
    crucial 512mb PC2700
    Radeon 9200
    belkin firewire card
    trust V92 modem
    any help would be much appreciated as the new computer sole purpose is to video edit.
    cheers everyone

    I have the same problem and have a very old MoBo 266Pro board, I have a different camera it's a Samsung dp-s103 or something like that, whenever I try to capture some movie the program lock ups and I have to =restart the PC.  I tried taking out the PCI cards and left only the firewire PCI card I was able to capture about 16 minutes of video, but it still locks up.  I will try the latency patch and a bios upgrade.  Will then see how everything turns up.  I've also tried this on an old computer with an Intel chipset, 733Mhz processor and it worked fine, so this must be either a chipset problem or MSI didn't manufacture these board well.
    Best regards
    PS.  I think that my new system will be a pure intel one  :(

Maybe you are looking for

  • Problem to make apple id without credit card

    i had bought new iphone 5c last year at the end of the year,,but when i want to sign in into app store..i had to review the apple id because it's still not connect to itunes store,,after reviewed it,,i had to make billing payment meanwhile i'm the ne

  • How to call a VB dll with boolean parameter in labview

    hi ,      I havea problem with labview calling dll.      I need to call a customer's dll(VB) , but I find labview have no  boolean type parameter, so how can I do it ?      I have used labview 7.1 and only have dll without source code. sonic Sonic Di

  • Report from Dataset won't display on Production Machine

    I have a report that was developed from a dataset. It displays perfectly on my development machine, but produces a 'Database Login Error' , Error: Object reference not set to an instance of an object. when I try to access it from my production server

  • Double copies of gmail

    i receive mail via my mobile me account and gmail on my macbook 6.2 suddenly I am receiving 2 copies of every gmail that I receive. Any idea of how to change it back to just one. The odd part is: if I delete one of the two copies, they both delete at

  • Original ipad, playlist is reversed, how can I change it?

    The playlist on my ipad it totally reversed from the playlist on itunes on my computer.  I would live to reverse it back.  How would I do this?