[VIA] MS-6378 + VIA VT8361 = low display quality ???

MY System Configuration :
MB   : MSI   MS-6378(VT8361)
Video Controller : VIATech VT8361/VT8601 Graphics Controller
    Version :  6.13.10.3124
Chipset : VIA KLE133 (VT686B - 352 BGA)
   - Integrated Trident Blade 2D/3D video accelerator
Processor : AMD Athlon XP 1100 Mhz
OS : Windows XP
Pblm:
===
low  display quality for video playback.
when i start playing video files, display isn't clear.
its blured here and there..
i have installed drivers tht comes with mboard cd.
what is the problem...
can u help me ?
thanks,
abin

Here is a link to a couple that will work.
http://www.newegg.com/Product/ProductList.asp?Manufactory=&PropertyCodeValue=0&PropertyCodeValue=683%3A9610&PropertyCodeValue=685%3A9618&PropertyCodeValue=0&PropertyCodeValue=686%3A9623&PropertyCodeValue=0&PropertyCodeValue=696%3A9642&PropertyCodeValue=0&PropertyCodeValue=0&PropertyCodeValue=0&PropertyCodeValue=0&PropertyCodeValue=0&PropertyCodeValue=0&PropertyCodeValue=0&description=&MinPrice=&MaxPrice=&SubCategory=48&Submit=Property

Similar Messages

  • Which cable (original apple usb or bmw y) shall i use to connect my 4th gen iPod photo 60 gb to bmw f10 (with com box) is it going to work with the apple usb cable and how long does it take till I can access the 33gb content via the bmw display?

    Which cable (original apple usb or bmw y) shall I use to connect my 4th gen iPod photo 60 gb (old but still working ok) to bmw f10 (with com box), build december 2010 > is it going to work with the apple usb cable and if so, how long does it take till I should be able to access the 33gb content via the bmw display?
    Alternatively: How long does it take if I would have to use the bmw y cable till I can access the 33gb content via the bmw display?

    Which cable (original apple usb or bmw y) shall I use to connect my 4th gen iPod photo 60 gb (old but still working ok) to bmw f10 (with com box), build december 2010 > is it going to work with the apple usb cable and if so, how long does it take till I should be able to access the 33gb content via the bmw display?
    Alternatively: How long does it take if I would have to use the bmw y cable till I can access the 33gb content via the bmw display?

  • IMac 7,1 turning internal screen off while watching a movie via output (second display), possible?

    iMac 7,1 turning internal screen off while watching a movie via output (second display), is it possible with Lion?

    Actually, Plex does the best job by placing a black background to the internal iMac screen it's called Blanking.
    However that does not turn off the backlit which is very bright on the iMac 24" also the internal screen will draw more power that way.   As you probably know running bootcamp you can turn off the internal screen while watching a movie on the external.  This isn't a hardware limitation, I hope Lion has this feature.

  • TECRA A11 - low sound quality earphone to AUX

    Tecra A11 provides *low sound quality* (iTunes) connecting with my hifi system *via earphone out to AUX* in. An Apple MacBook connected in the same way does much better. Any idea how could enhance the quality? Thanks in advance!

    Hmmmmm...... have you tried to change sound settings, player equaliser?
    Open control panel and check if there is Realtek sound manager (Realtek soundcard) and play a little bit with sound effects settings.

  • Display quality in Editor

    I am a new user of PSE 8 and
    have the following problem:
    The image display quality is noticeably poorer in the Editor compared with the same image quality in organizer and a number of other jpg display programs(eg. Windows live photo gallery, Canon editing software). The effect is slightly washed out and lower contrast images. This was particularly noticeable working with old scanned black and white photos.
    I am running 64 bit windows 7, Nvidia graphics, 23 inch Samsung hi def LCD monitor.
    Any suggestions? 

    Originally posted by: d.kleinrath.inode.at
    Thanks Anthony,
    You mean that implementing a way to save higher quality image files also=
    =
    means that the resolution of the diagram needs to be changeable as a =
    whole? So one should be able to insert higher quality bitmaps into the =
    diagram once this is fixed?
    Dieter
    > Hi Dieter
    >
    > This is https://bugs.eclipse.org/bugs/show_bug.cgi?id=3D139574
    >
    > Cheers...
    > Anthony
    >
    >
    > "Dieter Kleinrath" <[email protected]> wrote in message
    > news:op.ujhu5xe8pj7es5@ben-f9ea5088efe...
    >> Hi,
    >>
    >> Is there any way to change the resolution of a GMF diagram so I can
    >> display and print high quality images in my editor?
    >>
    >> When I create a default editor the resolution of a Din A4 diagram see=
    ms =
    >> to
    >> be about 1000x700 pixel (~85 DPI). This is a very low quality for
    >> displaying/printing images so I'd like to use diagrams with 300 DPI o=
    r
    >> more in my editor.
    >>
    >> Thanks for your help,
    >> Dieter

  • Poor full screen display quality

    I am in a dual-display environment. One display I have set up as a full-screen display for images as I edit them in Aperture. They show up in a dismally poor quality; a grid-like low resolution. When I zoom in on them, the issue goes away. It's just when an image is displayed in its entirety. This is a 20" Cinema display. Note that there is no display quality issue with Photoshop. Thanks.

    Which picture is the refence picture?
    I have been noticing that the same image in different programes does look different, colour and tone.. Now I understand that as each programe reads the data differently. BUT with Aperture I have noticed this is the case within aperture and this is crazy.
    The photo is different in the loupe again different in the full frame version and yet again with in the grid. So when using the loupe is it possible to compare images enlarged from the grid and so on! and on. and the exported images look diferent again when viewed...
    Strange as it is all on one monitor!
    Or am I the only one to notice this?
    icu2

  • Dynamically Changing Display Quality for Children

    I am interested in changing the display quality for a child SWF that is loaded in at Runtime, and changing it's Display quality based on user interaction.  Anyone know if this is possible?
    I have the following below, however it changes the entire application, not just the dynamically loaded SWF
    Any help would be greatly appreciated.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
                      xmlns:s="library://ns.adobe.com/flex/spark"
                      xmlns:mx="library://ns.adobe.com/flex/mx" minWidth="955" minHeight="600"
                      applicationComplete="init()">
         <fx:Declarations>
         </fx:Declarations>
         <fx:Script>
              <![CDATA[
                   private var mc:*;
                   private function init():void{
                        var loader:Loader = new Loader();
                        loader.contentLoaderInfo.addEventListener( Event.COMPLETE, handleComp );
                        loader.load( new URLRequest( "my/swf/file.swf" ) );
                   private function handleComp( _event:Event ) :void{
                        mc = (_event.target.content)
                        av.addChild( mc );
                   private function changeQuality( _q:String ):void{
                        switch (_q){
                             case "low":          av.stage.quality = "low";          break;
                             case "medium":     av.stage.quality = "medium";     break;
                             case "high":     av.stage.quality = "high";          break;
              ]]>
         </fx:Script>
         <s:VGroup>
              <s:HGroup>
                   <s:Button label="low" click="changeQuality( 'low' )" />
                   <s:Button label="medium" click="changeQuality( 'medium' )" />
                   <s:Button label="high" click="changeQuality( 'high' )" />
              </s:HGroup>
              <s:SpriteVisualElement id="av" height="300" width="100" />
         </s:VGroup>
    </s:Application>

    Sorry i talked to fast...
    In fact I think there is only one instance of the Stage object in a running player. So the only way to do this would be to rasterize your Sprite and store it in a BitmapData object, changing the quality of the stage juste before rasterization and then restoring back after. There is something in the doc that talk about this kind of thing: http://help.adobe.com/en_US/as3/mobile/WS4bebcd66a74275c36c11f3d612431904db9-7ffb.html
    Hope this is helpful...

  • Low image quality in pics

    Hi: I have a ipad 2 and when taking are blurry photos in low image quality. I have to do something to improve the image quality?
    I wait your comments...Thanks.

    Two main points:
    1.  Use good lighting.
    2.  Remember the photo is actually taken when you release the shutter ("take photo") button.  Make sure you do not move the iPad when you release the button.

  • I'm having problems with the reproduction of documents in Adobe X due to low reproduction quality ¿c

    I'm having problems with the reproduction of documents in Adobe X due to low reproduction quality ¿can you help me

    Some things to try...
    Using Windows Explorer navigate to C:\Program Files (x86)\Adobe\Reader 11.0\Reader, then double-click on Eula.exe and accept the license agreement
    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].
    If you cannot open Reader by itself, try to disable Protected Mode in the registry; download, unzip, then run the attached registry script
    It could even be a malware issue; see http://helpx.adobe.com/acrobat/kb/reader-core-dll-error.html

  • Display quality changed

    This is weird... My iPod nano spontaneously reset while I was using it, and after that I noticed that the display quality seems to have gone down. Pictures that previously had smooth color transitions now appear dithered. It almost looks as if the bit depth of the display decreased. Has anybody seen anything like this?? Am I going nuts here??
    Resetting the iPod didn't fix this. Replacing the images did not fix this. Help?

    Agreed, reset the Nano but use the iPod updater to get fresh code back in. A clickwheel+button reset continues reusing corrupted code.

  • Image display QUALITY controll bar/change/modifi

    Hello
    the bridges display quality of jpegs and raw images is awfull!!!
    i see blockiness in all of my images, how can i watch my photos like this??
    there is no crispness!
    u should made a picture display quality controll bar like speed-------quality
    so the user can select!

    Frosti,
    This request has been made many times. The development team are aware of the need for 100% previews. However, such a feature, if provided, will not be available until at least Bridge 2. Based on previous upgrade cycles that would be late 2006, at earliest. In the meantime you might consider providing more information on the type of images you're trying to preview (i.e. Raw, JPG, etc).
    Also, I would suggest that you soften the tone of your comments otherwise you'll find yourself with Read Only access.
    IanLyons
    Forum Host

  • Where are display quality pref's in CS6 AI?

    What happened to the display quality preference in AI CS6? I've got banding in a blend on screen, and can't tell if it's artifact of display or truly a problem with the blend.

    rexprints wrote:
    But my question was about rendering of gradients, not necessarily in the EPS file format.
    That sounds different in #2.
    Anyway: Banding on screen will not necessarily mean banding in print. Talk to your print service provider, because it depends on their equipment and of course on how exactly your stuff is printed. There are lots of different techniques and machines around.

  • Satellite P870 *PSPLFA-01C001) display quality is dull

    Hi all,
    Love my new laptop but the screen /display quality is really dull.
    Games aren't jagged they just aren't crisp.
    The webcam video quality is shocking. It's probably a setting that can fix this, if so can you point me in the right direction to fix this please as it's annoying me
    Thanks,
    Maxy

    Youve got this notebook:
    http://www.mytoshiba.com.au/products/computers/satellite/p870/psplfa-01c001/specifications
    It has been released with an +17.3 Toshiba TruBrite High Definition+ Widescreen TFT Active Matrix XGA 200NIT CSV (1600 x 900) resolution and LED backlighting+
    The screen resolution of 1600 x 900 is really good (better than display with 1024x 768px) and the display brightness can be changes in 8 steps:
    1 means lowest brightness, 8 means highest brightness.
    level8 220
    level7 170
    level6 130
    level5 95
    level4 60
    level3 40
    level2 30
    level1 20

  • Ps CS6 Request: User control over display quality versus performance (modified request)

    It would be great if there was user control of the zoom threshold at which display quality is sacrificed for performance.
    I mean the threshold which determines the maintaining of bit-depth in the calculation of the composite which is displayed when working with 16-bit documents, and the accuracy of displayed layer effects in documents with any bit-depth.
    The threshold currently seems to be approx 64% zoom - not much of a zoom out when dealing with large images destined for print.
    Please provide a control for that threshold in Preferences > Performance.

    Thank you for posting, conroy. I have an example of the inconvenient effects of Photoshop CS6 allowing the zoomed-out composite to be innaccurate.
    Here's a real-world application for everyone to see.
    In my below example you're not seeing a 16-bit doc, just 8-bit, BTW.
    Top C has Layer Styles. Bottom C is a copy that's been merged with a blank layer, to effectively "collapse" it's Layer Styles into a normal single pixel layer.
    The difference is staggering. This file is a massize 28x36 300DPI (8,400px  X  10,800px) poster.
    So on something like this, while working and tweaking everything you work worked zoomed out so you see enough of the document to be able monitor it's evolution.
    I was working at 25% zoom (depisted above) for a quite a while. Got everything good, but then zoomed in only to see that each letter actually looked like pretty bad compared to what the zoomed composite was telling me.
    I had to revise all letters.
    For hi-res print I guess I better get used to zooming in and out constantly, so I know what to trust.
    I wonder if this issue will ever be rectified. Like Conroy suggests, maybe a setting that allows users to voluntarily sacrifice performance in favor of a more accurate composite?

  • When using Lightroom Book module for Blurb book making, why do I keep getting a low image quality message if it's supposedly accessing my large raw files in my library?

    When using Lightroom Book module for Blurb book making, why do I keep getting a low image quality message if it's supposedly accessing my large raw files in my library?

    I think I've solved my problem with a Google Search. I came across a free slide show generator
    (contributions requested) that shows much higher quality slide shows than either iPhoto or Aperture 3.
    You click on a folder of jpegs and it almost immediately generates thumbnails and within a few seconds
    I can be viewing a full screen, tack sharp, slideshow of all of the files in the folder. Much sharper than
    I'm used to seeing.
    I think I'll keep the Aperture 3 and use if for the purpose it's intended for in the future. I'll also redo the
    image preview files to the small size it started with and then I'll copy all of the files I'm interested in from
    iPhoto into a separate folder on another disk. I'll use Aperture to catalog and to perform image manipulations
    on but I won't try to use it as an iPhoto replacement. I don't think I'll be using iPhoto much as an image
    viewer in the future either after I finish moving my favorite pictures to the Phoenix Slides folder.
    The name of the free program is Phoenix Slides. It's free to download and try, free to keep (though I
    think you'd want to pay the small amount requested) and fast. My pictures have never looked so good
    before.
    http://blyt.net/phxslides/
    Message was edited by: Jimbo2001

Maybe you are looking for

  • In Numbers 08 is it possible to add a link to a file on the local disc within a cell?

    In Numbers 08 is it possible to add a link to a file on the local disc within a cell?

  • Payment_method_lookup_code in supplier conversion using api

    The conversion is from 11i to R12. I am working on supplier conversion using API. The AP_VENDOR_PUB_PKG create_vendor or create_vendor_site does not have Payment_method_lookup_code to update into apps. How can i update the Payment_method_lookup_code

  • WRONG PLANT GENERATED WITH MATERIAL DOCUMENT IN HU02

    Hi All, I am packing Handling unit with HU02 with following options. Supplying plant 4140 Storage loc 2000(FG) to 2100(HU) with Batch number 11. After Saving this HU, when i check Material Document in Migo generated for above Handling unit, it shows

  • Force new window to open in new tab

    Now my safari open pages from the original pages to the new pages, I tried to set Safari to open pages in new tabs. I tried Safari ▹ Preferences ▹ Tabs ▹ Open pages in tabs instead of windows: Automatically or Never or Always, but it still opened the

  • IWork licence for businesses?

    Hi, I'm not sure this is the right forum to ask in, but there doesn't seem to any other iWork related forums other than Pages, Numbers and Keynote. I was just wondering, what about commercial/business licences for iWork, does such thing exist? Or do