Kamis, 10 Oktober 2013

Required technology

Visualization of a portion of the routes on the Internet.
Computers have been used to coordinate information between multiple locations since the 1950s. The U.S. military's SAGE system was the first large-scale example of such a system, which led to a number of special-purpose commercial systems such as Sabre.[54]
In the 1970s, computer engineers at research institutions throughout the United States began to link their computers together using telecommunications technology. The effort was funded by ARPA (now DARPA), and the computer network that resulted was called the ARPANET.[55] The technologies that made the Arpanet possible spread and evolved.
In time, the network spread beyond academic and military institutions and became known as the Internet. The emergence of networking involved a redefinition of the nature and boundaries of the computer. Computer operating systems and applications were modified to include the ability to define and access the resources of other computers on the network, such as peripheral devices, stored information, and the like, as extensions of the resources of an individual computer. Initially these facilities were available primarily to people working in high-tech environments, but in the 1990s the spread of applications like e-mail and the World Wide Web, combined with the development of cheap, fast networking technologies like Ethernet and ADSL saw computer networking become almost ubiquitous. In fact, the number of computers that are networked is growing phenomenally. A very large proportion of personal computers regularly connect to the Internet to communicate and receive information. “Wireless” networking, often utilizing mobile phone networks, has meant networking is becoming increasingly ubiquitous even in mobile computing environments.
Computer architecture paradigms
There are many types of computer architectures:
Quantum computer vs Chemical computer
Scalar processor vs Vector processor
Non-Uniform Memory Access (NUMA) computers
Register machine vs Stack machine
Harvard architecture vs von Neumann architecture
Cellular architecture
The quantum computer architecture holds the most promise to revolutionize computing.[56]
Logic gates are a common abstraction which can apply to most of the above digital or analog paradigms.
The ability to store and execute lists of instructions called programs makes computers extremely versatile, distinguishing them from calculators. The Church–Turing thesis is a mathematical statement of this versatility: any computer with a minimum capability (being Turing-complete) is, in principle, capable of performing the same tasks that any other computer can perform. Therefore any type of computer (netbook, supercomputer, cellular automaton, etc.) is able to perform the same computational tasks, given enough time and storage capacity.
Misconceptions

Main articles: Human computer and Harvard Computers


Women as computers in NACA High Speed Flight Station "Computer Room"
A computer does not need to be electronic, nor even have a processor, nor RAM, nor even a hard disk. While popular usage of the word “computer” is synonymous with a personal electronic computer, the modern[57] definition of a computer is literally “A device that computes, especially a programmable [usually] electronic machine that performs high-speed mathematical or logical operations or that assembles, stores, correlates, or otherwise processes information.”[58] Any device which processes information qualifies as a computer, especially if the processing is purposeful.
Required technology
Main article: Unconventional computing
Historically, computers evolved from mechanical computers and eventually from vacuum tubes to transistors. However, conceptually computational systems as flexible as a personal computer can be built out of almost anything. For example, a computer can be made out of billiard balls (billiard ball computer); an often quoted example.[citation needed] More realistically, modern computers are made out of transistors made of photolithographed semiconductors.
A central processing unit (CPU), also referred to as a central processor unit,[1] is the hardware within a computer that carries out the instructions of a computer program by performing the basic arithmetical, logical, and input/output operations of the system. The term has been in use in the computer industry at least since the early 1960s.[2] The form, design, and implementation of CPUs have changed over the course of their history, but their fundamental operation remains much the same.
A computer can have more than one CPU; this is called multiprocessing. Some integrated circuits (ICs) can contain multiple CPUs on a single chip; those ICs are called multi-core processors.
Two typical components of a CPU are the arithmetic logic unit (ALU), which performs arithmetic and logical operations, and the control unit (CU), which extracts instructions from memory and decodes and executes them, calling on the ALU when necessary.
Not all computational systems rely on a central processing unit. An array processor or vector processor has multiple parallel computing elements, with no one unit considered the "center". In the distributed computing model, problems are solved by a distributed interconnected set of processors.
The abbreviation CPU is sometimes used incorrectly by people who are not computer specialists to refer to the cased main part of a desktop computer containing the motherboard, processor, disk drives, etc., i.e., not the display monitor or keyboard.
Contents  [hide]
1 History
1.1 Transistor and integrated circuit CPUs
1.2 Microprocessors
2 Operation
3 Design and implementation
3.1 Control unit
3.2 Integer range
3.3 Clock rate
3.4 Parallelism
3.4.1 Instruction level parallelism
3.4.2 Thread-level parallelism
3.4.3 Data parallelism
4 Performance
5 See also
6 References and notes
6.1 Notes
6.2 References
7 External links
History[edit]

Multiprocessing

Magnetic core memory was the computer memory of choice throughout the 1960s, until it was replaced by semiconductor memory.
A computer's memory can be viewed as a list of cells into which numbers can be placed or read. Each cell has a numbered “address” and can store a single number. The computer can be instructed to “put the number 123 into the cell numbered 1357” or to “add the number that is in cell 1357 to the number that is in cell 2468 and put the answer into cell 1595.” The information stored in memory may represent practically anything. Letters, numbers, even computer instructions can be placed into memory with equal ease. Since the CPU does not differentiate between different types of information, it is the software's responsibility to give significance to what the memory sees as nothing but a series of numbers.
In almost all modern computers, each memory cell is set up to store binary numbers in groups of eight bits (called a byte). Each byte is able to represent 256 different numbers (2^8 = 256); either from 0 to 255 or −128 to +127. To store larger numbers, several consecutive bytes may be used (typically, two, four or eight). When negative numbers are required, they are usually stored in two's complement notation. Other arrangements are possible, but are usually not seen outside of specialized applications or historical contexts. A computer can store any kind of information in memory if it can be represented numerically. Modern computers have billions or even trillions of bytes of memory.
The CPU contains a special set of memory cells called registers that can be read and written to much more rapidly than the main memory area. There are typically between two and one hundred registers depending on the type of CPU. Registers are used for the most frequently needed data items to avoid having to access main memory every time data is needed. As data is constantly being worked on, reducing the need to access main memory (which is often slow compared to the ALU and control units) greatly increases the computer's speed.
Computer main memory comes in two principal varieties: random-access memory or RAM and read-only memory or ROM. RAM can be read and written to anytime the CPU commands it, but ROM is preloaded with data and software that never changes, therefore the CPU can only read from it. ROM is typically used to store the computer's initial start-up instructions. In general, the contents of RAM are erased when the power to the computer is turned off, but ROM retains its data indefinitely. In a PC, the ROM contains a specialized program called the BIOS that orchestrates loading the computer's operating system from the hard disk drive into RAM whenever the computer is turned on or reset. In embedded computers, which frequently do not have disk drives, all of the required software may be stored in ROM. Software stored in ROM is often called firmware, because it is notionally more like hardware than software. Flash memory blurs the distinction between ROM and RAM, as it retains its data when turned off but is also rewritable. It is typically much slower than conventional ROM and RAM however, so its use is restricted to applications where high speed is unnecessary.[48]
In more sophisticated computers there may be one or more RAM cache memories, which are slower than registers but faster than main memory. Generally computers with this sort of cache are designed to move frequently needed data into the cache automatically, often without the need for any intervention on the programmer's part.
Input/output (I/O)
Main article: Input/output


Hard disk drives are common storage devices used with computers.
I/O is the means by which a computer exchanges information with the outside world.[49] Devices that provide input or output to the computer are called peripherals.[50] On a typical personal computer, peripherals include input devices like the keyboard and mouse, and output devices such as the display and printer. Hard disk drives, floppy disk drives and optical disc drives serve as both input and output devices. Computer networking is another form of I/O.
I/O devices are often complex computers in their own right, with their own CPU and memory. A graphics processing unit might contain fifty or more tiny computers that perform the calculations necessary to display 3D graphics.[citation needed] Modern desktop computers contain many smaller computers that assist the main CPU in performing I/O.
Multitasking
Main article: Computer multitasking
While a computer may be viewed as running one gigantic program stored in its main memory, in some systems it is necessary to give the appearance of running several programs simultaneously. This is achieved by multitasking i.e. having the computer switch rapidly between running each program in turn.[51]
One means by which this is done is with a special signal called an interrupt, which can periodically cause the computer to stop executing instructions where it was and do something else instead. By remembering where it was executing prior to the interrupt, the computer can return to that task later. If several programs are running “at the same time,” then the interrupt generator might be causing several hundred interrupts per second, causing a program switch each time. Since modern computers typically execute instructions several orders of magnitude faster than human perception, it may appear that many programs are running at the same time even though only one is ever executing in any given instant. This method of multitasking is sometimes termed “time-sharing” since each program is allocated a “slice” of time in turn.[52]
Before the era of cheap computers, the principal use for multitasking was to allow many people to share the same computer.
Seemingly, multitasking would cause a computer that is switching between several programs to run more slowly, in direct proportion to the number of programs it is running, but most programs spend much of their time waiting for slow input/output devices to complete their tasks. If a program is waiting for the user to click on the mouse or press a key on the keyboard, then it will not take a “time slice” until the event it is waiting for has occurred. This frees up time for other programs to execute so that many programs may be run simultaneously without unacceptable speed loss.
Multiprocessing
Main article: Multiprocessing


Cray designed many supercomputers that used multiprocessing heavily.
Some computers are designed to distribute their work across several CPUs in a multiprocessing configuration, a technique once employed only in large and powerful machines such as supercomputers, mainframe computers and servers. Multiprocessor and multi-core (multiple CPUs on a single integrated circuit) personal and laptop computers are now widely available, and are being increasingly used in lower-end markets as a result.
Supercomputers in particular often have highly unique architectures that differ significantly from the basic stored-program architecture and from general purpose computers.[53] They often feature thousands of CPUs, customized high-speed interconnects, and specialized computing hardware. Such designs tend to be useful only for specialized tasks due to the large scale of program organization required to successfully utilize most of the available resources at once. Supercomputers usually see usage in large-scale simulation, graphics rendering, and cryptography applications, as well as with other so-called “embarrassingly parallel” tasks.
Networking and the Internet
Main articles: Computer networking and Internet


Arithmetic logic unit

Main articles: Central processing unit and Microprocessor
A general purpose computer has four main components: the arithmetic logic unit (ALU), the control unit, the memory, and the input and output devices (collectively termed I/O). These parts are interconnected by buses, often made of groups of wires.
Inside each of these parts are thousands to trillions of small electrical circuits which can be turned off or on by means of an electronic switch. Each circuit represents a bit (binary digit) of information so that when the circuit is on it represents a “1”, and when off it represents a “0” (in positive logic representation). The circuits are arranged in logic gates so that one or more of the circuits may control the state of one or more of the other circuits.
The control unit, ALU, registers, and basic I/O (and often other hardware closely linked with these) are collectively known as a central processing unit (CPU). Early CPUs were composed of many separate components but since the mid-1970s CPUs have typically been constructed on a single integrated circuit called a microprocessor.
Control unit
Main articles: CPU design and Control unit


Diagram showing how a particular MIPS architecture instruction would be decoded by the control system.
The control unit (often called a control system or central controller) manages the computer's various components; it reads and interprets (decodes) the program instructions, transforming them into a series of control signals which activate other parts of the computer.[44] Control systems in advanced computers may change the order of some instructions so as to improve performance.
A key component common to all CPUs is the program counter, a special memory cell (a register) that keeps track of which location in memory the next instruction is to be read from.[45]
The control system's function is as follows—note that this is a simplified description, and some of these steps may be performed concurrently or in a different order depending on the type of CPU:
Read the code for the next instruction from the cell indicated by the program counter.
Decode the numerical code for the instruction into a set of commands or signals for each of the other systems.
Increment the program counter so it points to the next instruction.
Read whatever data the instruction requires from cells in memory (or perhaps from an input device). The location of this required data is typically stored within the instruction code.
Provide the necessary data to an ALU or register.
If the instruction requires an ALU or specialized hardware to complete, instruct the hardware to perform the requested operation.
Write the result from the ALU back to a memory location or to a register or perhaps an output device.
Jump back to step (1).
Since the program counter is (conceptually) just another set of memory cells, it can be changed by calculations done in the ALU. Adding 100 to the program counter would cause the next instruction to be read from a place 100 locations further down the program. Instructions that modify the program counter are often known as “jumps” and allow for loops (instructions that are repeated by the computer) and often conditional instruction execution (both examples of control flow).
The sequence of operations that the control unit goes through to process an instruction is in itself like a short computer program, and indeed, in some more complex CPU designs, there is another yet smaller computer called a microsequencer, which runs a microcode program that causes all of these events to happen.
Arithmetic logic unit (ALU)
Main article: Arithmetic logic unit
The ALU is capable of performing two classes of operations: arithmetic and logic.[46]
The set of arithmetic operations that a particular ALU supports may be limited to addition and subtraction, or might include multiplication, division, trigonometry functions such as sine, cosine, etc., and square roots. Some can only operate on whole numbers (integers) whilst others use floating point to represent real numbers, albeit with limited precision. However, any computer that is capable of performing just the simplest operations can be programmed to break down the more complex operations into simple steps that it can perform. Therefore, any computer can be programmed to perform any arithmetic operation—although it will take more time to do so if its ALU does not directly support the operation. An ALU may also compare numbers and return boolean truth values (true or false) depending on whether one is equal to, greater than or less than the other (“is 64 greater than 65?”).
Logic operations involve Boolean logic: AND, OR, XOR and NOT. These can be useful for creating complicated conditional statements and processing boolean logic.
Superscalar computers may contain multiple ALUs, allowing them to process several instructions simultaneously.[47] Graphics processors and computers with SIMD and MIMD features often contain ALUs that can perform arithmetic on vectors and matrices.
Memory
Main article: Computer data storage

Senin, 08 Juli 2013

C&E CNE11304 Mini DisplayPort to HDMI Adapter Cable for Apple MacBook, MacBook Pro, iMac, MacBook Air and Mac Mini Laptop



Product Description

The mini DisplayPort to HDMI Adapter lets you connect a high definition monitor, projector, or LCD that uses a HDMI connector or cable to a MacBook, MacBook Pro, or MacBook Air with a mini DisplayPort 2.Features: 1) Mini DisplayPort 1.1a input and HDMI 1.3b output. 2) HDMI highest video resolution 1080p. 3) HDMI225 MHz/2.25 Gbps per channel (6.75Gbps all channel) bandwidth. 4) HDMI 12 bit per channel (36 bit all channel) deep color. 5.)Powered by Mini DisplayPort source 6.)Connectors: Mini DisplayPort Male to HDMI Female Compatible With: Apple: iMac, Mac Mini, Mac Pro, MacBook Air, MacBook Pro 13 inch, MacBook Pro 15 inch, MacBook Pro 17 inch Package Includes: 1 x Mini DisplayPort to HDMI adapter for apple MacBook NOTE: Adapter only works with laptops with Mini DisplayPort, please check with your device's output specification before placing order .



Product Details

  • Size: Generic Mini DP Adapter
  • Color: White
  • Brand: C&E
  • Model: CNE11304
  • Dimensions: 1.80" h x .50" w x 4.00" l, 1.00 pounds

Features

  • Adapter only works with laptops with Mini Display port, please check with your device's output specification before placing order
  • Uncompressed audio such as LPCM. Compressed audio such as DTS Digital, Dolby Digital
  • The mini Display Port to HDMI Adapter lets you connect a high definition monitor, projector, or LCD that uses a HDMI connector
  • Compatible With: Apple: iMac, Mac Mini, Mac Pro, MacBook Air, MacBook Pro 13 inch, MacBook Pro 15 inch, MacBook Pro 17 inch
  • Support Mini Display Port 1.1a input and HDMI1.3b output. HDMI highest video resolution 1080p.HDMI225 MHz/2.25 Gbps per channel

PlugLug HD-600 Series High-Speed HDMI Cable (16.4 feet) Supports Ethernet, 3D, and Audio Return - Triple Shielded [Latest Version]



Product Description

PlugLug High Speed HDMI Cable with Ethernet Supports 3D, Audio Return Channel and Up To 1440P Resolution

Compatible with latest HDTV Technologies
PlugLug cables are fully certified to support advanced HDMI features such as 3D, Ethernet and Audio Return.

Backwards Compatible with Previous HDMI Standards
This cable is backwards compatible with all previous HDMI standards, so you'll be able to use this cable with all your HDMI devices. When you connect two devices with different HDMI standards, they will automatically find the best available connection.

Quality Picture and Sound
- Supports 3D Content, Ethernet, and Audio Return
- 4K, 1440p, 1080p, 1080i, 720p, 480p, and 480i Resolutions
- Next Generation 4K x 2K Screens and provides Ultra High Definition Video for Digital Cinemas
- True HD Dolby 7.1 and DTS-HD Master Audio
- Works with all HDTVs, Blu-ray players, Xbox 360, PS3 and other HDMI devices

Physical Specifications
- 28 AWG Cable - Thicker for durability yet flexible due to soft PVC Jacket
- 24K Gold Plated Connectors promise an accurate transmission of picture and sound
- Stranded Oxygen Free Copper conductors minimize resistance and signal loss
- Isolates outside noise for superior clarity with high density triple-shielding
- Transfer Rates up to 340Mhz / 10.2Gbps
- HDCP Compliant
- HDMI ATC 1.4a Certified

Warranty and Technical Support
PlugLug HDMI cables are backed by a Limited Lifetime Warranty.



Product Details

  • Color: Black
  • Brand: PlugLug
  • Model: P100-00C

Features

  • Supports 3D Technology, 4K, Ethernet Channel, Audio Return Channel, 1440p and 1080p Full HD Resolution
  • Category 2 Certified - High-Speed 10.2 Gbps / 340 MHz (Supports Increased Refresh Rates and 48-Bit Deep Color)
  • Supports 4K x 2K Duel Stream, 4K, 1440p, 1080p, 1080i, 720p, 480p, and 480i Resolutions
  • Triple shielded heavy duty 28 AWG Premium Grade Cable with soft PVC Jacket
  • 24K Gold Plated Connectors promise accurate transmission of picture and audio

Mini HDMI Type C Male to VGA Female Projector Monitor Adapter for Pad DV MP4



Product Description

This cable adapter is designed to transfer HDMI signal of those devices with Mini HDMI interface,
like computer, laptop, HD-set-top-box, harddisk player, PS3, Xbox360 and tablets,
to VGA signal and display it to large screen devices,
such as monitors, LCD TV, Projectors. It enables you to watch HDMI video on a large screen and enjoy it with your family and friends.
A perfect companion for an easy and enjoying life! ,
Specifictions:,
* Connector: Mini HDMI male to VGA female,
* Chip in-set,
* Plug and play,
* Easy to operate,
* Support HDCP 1.0 / 1.1 / 1.2 / 1.3,
* HDMI: 480i / 576i / 480p / 576p / ,720p,
* VGA: 480i / 576i / 480p / 576p / 720p,



Product Details

  • Brand: Debays

Features

  • Simple to use, small form factor converter makes Mini DisplayPort backwards compatible with your existing VGA display or projector
  • No installation software or drivers required providing a simple plug and play solution
  • Supports PC resolutions up to 1920x1200 and HDTV resolutions up to 1080p
  • Easy to use adapter, no software required
  • Compatible with Intel Thunderbolt

SIIG Micro HDMI to VGA with Audio Adapter



Product Description

Main Features

  • Limited Warranty: 3 Year
  • Manufacturer/Supplier: SIIG, Inc
  • Manufacturer Part Number: CB-H20C11-S1
  • Manufacturer Website Address:
  • Brand Name: SIIG
  • Product Name: Micro HDMI to VGA with Audio Adapter
  • Packaged Quantity: 1
  • Product Type: Signal Converter
  • Functions: Signal Conversion
  • HDMI: Yes
  • VGA: Yes
  • Digital Audio: Yes
  • Form Factor: External
  • Height: 2.4"
  • Width: 2.6"
  • Depth: 0.9"
  • Weight (Approximate): 1.76 oz
  • Package Contents:
      Micro HDMI to VGA with Audio Adapter, USB to DC Power Cable, Micro HDMI to Micro HDMI Cable, Quick Installation Guide
  • Green Compliant: Yes
  • Green Compliance Certificate/Authority: RoHS
  • Country of Origin: China


Product Details

  • Brand: SIIG
  • Model: CB-H20C11-S1
  • Dimensions: .50 pounds

Features

  • New
  • SIIG INC CB-H20C11-S1
  • SIIG INC CB-H20C11-S1 MICRO HDMI TO VGA W/AUDIO ADAPT WITH AUDIO ADAPTER

100ft Premium Molded VGA Male to Male Monitor Cable with Ferrites



Product Description

Premium Molded VGA Cable with Ferrite BeadsVGA, also known as Video Graphics Array, is a long-time standard used on most computer video cards, monitors, screens, and high-definition televisions. VGA's ubiquity makes VGA accessories, such as cables, an absolute necessity for any computer setup / information system. Our ultra-quality professional VGA cables have molded connectors for easy grip to ensure a secure connection. Additionally, these cables use ferrite beads to filter out undesirable electronic and electromagnetic interference to deliver maximum video purity. Using our premium VGA cables, you can connect computers to display monitors, screens and high-definition TV's to provide you brilliant graphics and visually stunning high-definition video.Typical Applications: * Connecting between computers and display monitors, screens, and high-def. TV's * Connecting between high-def. video devices and display monitors, screens, and high-def. TV'sPremium VGA/SVGA/XGA/SXGA/UXGA CableMade with only the best cabling technology, these cables will deliver ultra-high display performance: Guaranteed.



Product Details

  • Amazon Sales Rank: #820456 in Single Detail Page Misc
  • Brand: EZcables

Features

  • Gold Flash connectors ensure connectivity.
  • Heavy-Duty Coax style cabling delivers ultra-high performance.
  • Full Copper shielding eliminates noise.
  • High-End ferrites (on both ends!) further enhances shielding and performance.
  • UL Certified AWG: 26

BestDealUSA HDMI Gold Male TO VGA HD-15 Male M to M Cable 6FT 1.8M 1080P



Product Description

Provide high bandwidth (340 MHz / 10.2 Gbps) for high-speed data transferCable transmits video signals up to 1024 x 768 pixel resolutionGold plated connectors to ensure superior signal transferAccessory ONLYNOTE: Even though HDMI cables support Hot Plug Detection, improper usage might result in resetting / restarting both devices, or even may cause damage to the devices. Therefore, we do not suggest Hot Plug action for any HDMI cables. Please make sure both input and output devices are off when plugging or unplugging HDMI cables.Package Contents:1x 6 FT HDMI to VGA M/M Cable



Product Details

Features

  • 100% brand new and high quality and cheap
  • New generic VGA to HDMI Cable M/ M, 6 FT/ Black
  • Gold plated connectors to ensure superior signal transfer
  • Connectors: HDMI Male to VGA 15pin Male
  • Use this cable to connect your VGA devices to HDMI

LinkS Active HDMI to VGA M/F Adapter w/ 3 FT USB Charging Cable and 3FT 3.5mm Stereo cable in white - Supports Audio



Product Description

Connect an HDMI-equipped Laptop, Ultrabook, or Desktop Computer to your VGA Display, or Projector with Audio

The LinkS HDMI-to-VGA Adapter Cable enables you to connect an HDMI output device, such as a laptop video output or digital media extender to a VGA display device (monitor, projector)
by converting the HDMI video signal from the output device into a VGA output and separate 2-channel analog audio.

Ideal for low powered video cards

1.Optional External USB power(When use with Samsung ChromeBook & Macbook Pro with Retina Display, please plug in the included Micro USB charging cable)
2.Works with low powered HDMI video cards that do not output enough power for a stand-alone adapter

Designed for travel - Lightweight and portable

Small foot print makes this adapter ideal for connecting your tablet or smartphone to VGA displays while on the road or in boardrooms using VGA projectors

Plug-and-Play Installation

1.no installation of any Software or drivers
2.Connect to the HDMI output on your device
3.Connect your Display to LinkS HDMI TO VGA using a VGA cable
4.If external power is required, connect the included USB power cable from the device to a USB power source
5.Audio Support:3.5mm stereo audio output



Product Details

  • Brand: LinkS

Features

  • Built-in active IC chip converts digital HDMI signal into analog VGA video
  • Plug and play: no installation of any driver and software.
  • Suports Samsung Chromebook, Macbook with Retina Display, and Apple TV
  • Come with 3 FT USB Charging Cable and 3 FT 3.5mm Stereo Cable
  • One year warranty from LinkS

Kumo High Resolution VGA To VGA Cable (BLUE) - 15 FT



Product Description

Aurum Cables High quality Certified Cables providing you with clear, crisp and realistic HD picture.

* Enhance your home theater experience
* hand crafted Premium Construction
* Compatible with HDMI Devices

HDMI combines both audio and video into one convenient cable, so it's all you need to connect your HDTV to your A/V receiver
Blu-Ray player, Xbox 360, PlayStation 3, HD Cable Box, Personal Computer or any other (High Definition Multimedia Interface) device with an HDMI output.

Compatibility
- Supports 3D Content
- Guaranteed 4Kx2K, 1440p, 1080p, 1080i, 720p, 480p, and 480i Resolutions
- Supports Audio Return Channel
- Supports Highest Refresh Rates Available
- Supports Transfer Rates of Up to 340Mhz or 10.2gbps
- Supports True HD Dolby 7.1 and DTS-HD Master Audio
- HDCP Compliant

Quality Construction
- Nylon jackets add extra durability and stronger grip without the bulkiness and are designed to complement each specific molding.
- Full Metal Shielding Within Connectors For Durability and Interference Protection
- Shielding Throughout Cable
- HDMI connectors are 24K Gold plated.

Stylish design
We at Aurum Cables put tremendous effort not only in excellence of quality in the cables
but in style as well as you can see in the picture
allowing you to connect your devices with much neater and stylish wiring.



Product Details

  • Brand: Aurum Cables

Features

  • 15 ft Connects your VGA device to another VGA device
  • Supports full 1080p HD viewing with digital transfer at rates up to 10.2Gbps - for excellent picture quality
  • 24k Gold Plated Connectors
  • Gold plated VGA to VGA connectors
  • Fully compliant with the VGA standard defined by DDWG (Digital Display Working Group)

VicTsing HDMI Input to VGA Adapter Converter For PC Laptop NoteBook HD DVD White With audio out



Product Description

Specification:

This HDMI A male to VGA adpater has many features that enable it to perform in a superior manner. Among those features you'll find??

1. Easy to use: install in seconds, no need of setting.
2. Conversion: it can convert complete HDMI into VGA vedio.
3. Supports 165MHz/1.65Gbps per channel (6.75 Gbps all channel) bandwidth for HDMI input.
4. Supports analog vedio output up to UXGA and 1080p with 10-bit DAC.

Please kindly note that this item is unidirectional, could not help VGA convert to HDMI.
 This is the regular HDMI adapter, would not fit for micro HDMI and mini HDMI connector.

Package:

1 x HDMI to VGA Adapter
1 x 3.5mm Audio cable



Product Details

  • Color: Black
  • Brand: VicTsing

Features

  • It supports full-size high-definition resolution of 720p or 1080p.
  • Can use for All HDMI input and VGA output device.
  • Convert the HDMI output port on your ENVY or Voodoo laptop to an analog VGA input with the HDMI to VGA Conversion Adapter.
  • Connectting your new NoteBook, Laptop, HD DVD,HD DV without VGA interface to projector, Display, LCD, TV & Monitor in old model with VGA interface only for big screen viewing.
  • Plug-in-out, extral Power,Power from HDMI connectting device.

Minggu, 07 Juli 2013

eForCity Gold Plated 6FT VGA/HD15/RGB to 3 RGB COMPONENT FOR TV/HDTV CABLE



Product Description

This cable is primarily used for connecting video projectors with Component-in capability through its VGA port. It can only function with a VGA port that is either able to receive or transmit Component signals (Y, Pr, Pb). NOTE: Your display system must support component video (Y, Pr, Pb) signal output function in order for the image to display properly. Please consult with your VGA card's user manual for more information. Specific TV-out feature on video card is required, please check with your video card output specification for compatibility.



Product Details

  • Brand: eForCity
  • Dimensions: 3.00 pounds

Features

  • NOTE: Your display system must support component video (Y, Pr, Pb) signal output function in order for the image to display properly. Please consult with your VGA card's user manual for more information.
  • This cable is for Satellite TV, HDTV, Component RGB Video, Y/ Pb /Pr Video and most LCD Projectors.
  • NOTE: Specific TV-out feature on video card is required, please check with your video card output specification for compatibility.

Imixcity HDMI MALE TO VGA HD-15 MALE Cable 6FT 1.8M 1080P IK3



Product Description

Connecting Digital video and Digital Audio in one;Gold plated connectors make sure superior signal transfer;Good Performance Home Theater interconnect for high-definition DVD players, HDTV receivers, TV sets, projectors, A/V receivers, and other HDMI-equipped devices



Product Details

  • Brand: Imixcity
  • Model: 040394

Features

  • HDMI to VGA cable

VGA to HDMI Cable M/M, 6 FT, Black (Video Card Support Necessary)



Product Description

Your Video card must support digital signal output through VGA port function. Please consult with your VGA card's user manual for more information. Premium 5 ft VGA (HDDB15) to HDMI male to male Cable.Cable transmit video signals up to 1024 x 768 pixel resolution.Gold plated connectors to ensure superior signal transfer.Connectivity:1 x VGA HDDB15 15-pin - Male;1 x HDMI - Male.Color: Black;Cord Length: 5ft / 1.5m.Accessory ONLY. NOTE: Even though HDMI cables support Hot Plug Detection, improper usage might result in resetting / restarting both devices, or even may cause damage to the devices. Therefore, we do not suggest Hot Plug action for any HDMI cables. Please make sure both input and output devices are off when plugging or unplugging HDMI cables.



Product Details

Features

  • HDMI cables support Hot Plug Detection, improper usage might result in resetting / restarting both devices, or even may cause damage to the devices.
  • Premium 5 ft VGA (HDDB15) to HDMI male to male Cable.NOTE: Your Video card must support digital signal output through VGA port function
  • Cable transmit video signals up to 1024 x 768 pixel resolution
  • Gold plated connectors to ensure superior signal transfer.We do not suggest Hot Plug action for any HDMI cables.
  • Connectivity:1 x VGA HDDB15 15-pin - Male;1 x HDMI - Male. Color: Black

HDMI Type A to VGA Audio Converter Adapter, 1080P HDTV 3.5mm Audio Cable



Product Description

This product is a portable digital-analog conversion line, defined through a standard HDMI input HD sources, you can convert audio and video output for VGA + Audio.
Products are widely applied to computer / DVD / digital set-top box / laptop / mobile phone / digital camera / Tablet PC / media player / a range of HD sources such as input devices. Audio and video signals to the TV / monitor / projector output.
To solve a simple user operation of the display device connectivity solutions.
Package Includes:
1 x HDMI Type A to VGA+Audio Converter Adapter
1 x 3.5mm Audio Cable



Product Details

  • Brand: Ebest
  • Model: 1

Features

  • Flexible design and realize a line through function.
  • No external power supply, plug and play.
  • Product resolution can be up to 720P/1080i/1080P
  • Product output audio source for: 3.5 or 3.5 audio socket to R+L
  • Input: HDMI Type A .Output: VGA + Audio

Black MF HDMI Male to VGA Female w/ Audio Output Adapter for PC Laptop/DVD



Product Description

Features:
* Much Lighter, portable
* High quality and elegant design
* No external power supply
* Easy to plug and play
* Equipped with Audio output cable
* Compatible for PC Laptop/DVD /PS3 /Xbox360 Tablet

Specifications:
* Connector: HDMI male to VGA female
* Chip in-set
* Plug and play
* Easy to operate
* Support HDCP 1.0 / 1.1 / 1.2 / 1.3
* HDMI Input: 480i / 576i / 480p / 576p / 720p / 1080p
* VGA Output: up to 720p
* Product output audio source for: 2.5 or 2.5 audio socket to R+L

Using Tips:
* When connect to computer, the resolution of the computer need to be setted to 1024*768 or below, if more than 1024*768 video output may not clear or will not work normally.
* When connect to Tablet PC, HD-set-top-box, harddisk player, PS3, Xbox360 and tablets, the resolution of those devices need to be set to below 720P, otherwise, this cable adapter will not work normally.
* This item converts video, converts video and Audio from HDMI to VGA + Audio convention.

Package contents:
* 1x HDMI to VGA w/ Audio Output Adapter



Product Details

  • Brand: Neewer
  • Model: 40025164

Features

  • HDMI to VGA with Audio Cable
  • Designed to transfer HDMI signal of devices (Computer, Laptop, HD-set-top-box, Harddisk player, PS3, Xbox360 and tablets) with HDMI interface to VGA signal and display it to larger screen devises(such as Monitors, LCD TV, Projectors).
  • It enables you to watch HDMI video on a large screen and enjoy it with your family and friends.
  • Excellent performance home theater interconnect for high-definition DVD players, HDTV receivers, TV sets, projectors, A/V receivers, and other HDMI-equipped devices. Mxa. 1080p resolution
  • Provides high bandwidth (340 MHz / 10.2 Gbps) for high-speed data transfer

Mini HDMI to VGA Video Converter Cable HD TV 1080P Connector +Audio Cord Adapter



Product Description

Features:
This product is a portable digital-analog conversion line, defined through a standard HDMI input HD sources, you can convert audio and video output for VGA + Audio.
1. Flexible design and realize a line through function
2.No external power supply, plug and play
3.Poduct resolution can be up to 720P/1080i/1080P
4.Product output audio source for: 3.5 or 3.5 audio socket to R + L
5.Input: Mini HDMI
6.The Output: VGA + Audio
7.Color: Black

Products are widely applied to:
Computer/DVD/digital set-top box/laptop/mobile phone/digital camera/tablet PC/media player/a range of HD sources such as input devices.
Audio and video signals to the TV / monitor / projector output.
To solve a simple user operation of the display device connectivity solutions.

Package content:
1*Mini HDMI to VGA Cable Adapter
1*3.5mm to 3.5mm Audio Cable



Product Details

Features

  • Mini HDMI to VGA Video Converter Cable HD TV 1080P Connector +Audio Cord Adapter
  • New Generic Video Converter Cable
  • 100% New Brand and High Quality
  • Color: Black

Sabtu, 06 Juli 2013

PTC Mini-DVI to HDMI Adapter with 6ft HDMI Cable for Macintosh



Product Description

The Mini-DVI to HDMI adapter is designed for the iMac (Intel Core Duo), MacBook, and 12-inch PowerBook G4 with Mini-DVI connection, allowing you to connect to an HDTV, external monitor or projector. This VALUE Pack includes a Premium Gold Series 6 ft HDMI Cable.



Product Details

  • Color: White
  • Brand: PTC
  • Model: MDVI-HDMI + 6ft HDMI-WH
  • Dimensions: 1.00 pounds

Features

  • Connector 1: Mini-DVI Male
  • Connector 2: HDMI Female
  • Premium quality cable - approximately 6 inches long
  • 6ft HDMI v1.3 Cable included
  • LIFETIME Warranty!

Generic 10 Inch Micro HDMI to VGA Female Video Cable - Support HD 1080P



Product Description

HDMI Input: the HDMI (Micro Type D) Input interface.
VGA Output: VGA signal Output interface.
Color: black.
Length: About 10inch(255mm)
Package Included:
Micro HDMI Male to VGA Female Video Converter adapter x 1.



Product Details

  • Brand: Generic
  • Model: EL144

Features

  • No need extra Power, from HDMI Power
  • Built-in chipset,Supported Video Device
  • The micro HDMI to VGA Adapter allows for a connection to VGA monitors and projectors supporting a maximum resolution of 1920X1080
  • It supports full-size high-definition resolution of 720p or 1080p
  • Can use for All Micro HDMI input to VGA output device

Importer520 HD15 Male to Male VGA Video Cable for TV Computer Monitor (50Ft, Blue Connector)



Product Description

Importer520 Brand Product

HDDB15 male-to-male VGA video for your monitor Connects PC or laptop to the projector, LCD monitor, and other video display system

Ideally suited for high resolution VGA applications, this high quality male to female coaxial VGA extension cable helps to eliminates picture "ghosting" and fuzzy images inherent to non-coaxial cables, and provides superior EMI interference protection

Connectivity: Connector HDDB15 15-pin (M/M) Cable.



Product Details

  • Size: 50Ft
  • Color: Blue Connector
  • Brand: Importer520

Features

  • Premium VGA/SVGA/XGA/SXGA/UXGA Monitor Cable
  • Heavy-Duty Coax style cabling delivers ultra-high performance.
  • Connectors: VGA Male to Male
  • Importer520 Brand Product

1.8M Golden Plated HDMI to VGA Male Adapter Converter Cable





CommonByte 6ft 1.8m VGA to Gold Plated HDMI Conversion Cable For Notebook Laptop PC to TV



Product Description

Premium 6 ft VGA (HDDB15) to HDMI male to male Cable. Cable transmit video signals up to 1024 x 768 pixel resolution. Gold plated connectors to ensure superior signal transfer. Connectivity: 1 x VGA HDDB15 15-pin - Male. 1 x HDMI - Male. Color: Black. Cord Length: 1.8 M / 6 FT.



Product Details

  • Brand: CommonByte
  • Model: A17573
  • Dimensions: 4.00 pounds

BestDealUSA HDMI GOLD MALE TO VGA HD-15 MALE Cable 6FT 1.8M 1080P



Product Description

NOTE: Even though HDMI cables support Hot Plug Detection, improper usage might result in resetting / restarting both devices, or even may cause damage to the devices. Therefore, we do not suggest Hot Plug action for any HDMI cables. Please make sure both input and output devices are off when plugging or unplugging HDMI cables.NOTE: Your Video card must support digital signal output through VGA port function. Please consult with your VGA card's user manual for more information. Connectivity: 1 x VGA HDDB15 15-pin - Male 1 x HDMI - MaleAccessory ONLYPackage contents:1x HDMI GOLD MALE TO VGA HD-15 MALE Cable



Product Details

Features

  • New generic VGA to HDMI Cable M/M, 6 FT / 1.8 M, Black
  • Premium 6 ft VGA (HDDB15) to HDMI male to male Cable
  • Cable transmit video signals up to 1024 x 768 pixel resolution
  • Gold plated connectors to ensure superior signal transfer
  • Color: Black Cord Length: 6ft / 1.8m

Jumat, 05 Juli 2013

White HDMI Male to VGA Female Video Cable Cord Converter Adapter 1080P for PC



Product Description

Specification:
* Product Type: HDMI Male to VGA RGB Female Converter adapter.
* HDMI input: the HDMI input interface.
* VGA output: VGA signal output interface.
* Weight: 2.18 ounce
* Color: White.

Package contents:
* 1 x WHITE HDMI MALE TO VGA FEMALE ADAPTER VIDEO CABLE



Product Details

  • Brand: Neewer
  • Model: 30031028

Features

  • High Quality.
  • Power Input: No need extral Power,Power supply from HDMI Power.
  • It supports full-size high-definition resolution of 720p or 1080p.
  • Suitable for All HDMI input device (like PC, DVD, PS3, Xbox360, etc ) and VGA output device (like monitor, projectors, etc).
  • Built-in chipset.

PlugLug HD-600 Series- High-Speed HDMI Cable (3.3 Feet/1 Meters) Supports Ethernet, 3D, and Audio Return - Triple Shielded [Latest Version]



Product Description

PlugLug High Speed HDMI Cable with Ethernet Supports 3D, Audio Return Channel and Up To 1440P Resolution

Compatible with latest HDTV Technologies
PlugLug cables are fully certified to support advanced HDMI features such as 3D, Ethernet and Audio Return.

Backwards Compatible with Previous HDMI Standards
This cable is backwards compatible with all previous HDMI standards, so you'll be able to use this cable with all your HDMI devices. When you connect two devices with different HDMI standards, they will automatically find the best available connection.

Quality Picture and Sound
- Supports 3D Content, Ethernet, and Audio Return
- 4K, 1440p, 1080p, 1080i, 720p, 480p, and 480i Resolutions
- Next Generation 4K x 2K Screens and provides Ultra High Definition Video for Digital Cinemas
- True HD Dolby 7.1 and DTS-HD Master Audio
- Works with all HDTVs, Blu-ray players, Xbox 360, PS3 and other HDMI devices

Physical Specifications
- 30 AWG Cable - Thicker for durability yet flexible due to soft PVC Jacket
- 24K Gold Plated Connectors promise an accurate transmission of picture and sound
- Stranded Oxygen Free Copper conductors minimize resistance and signal loss
- Isolates outside noise for superior clarity with high density triple-shielding
- Transfer Rates up to 340Mhz / 10.2Gbps
- HDCP Compliant
- HDMI ATC 1.4a Certified

Warranty and Technical Support
PlugLug HDMI cables are backed by a Limited Lifetime Warranty.



Product Details

  • Brand: PlugLug
  • Model: P100-00A

Features

  • Supports 3D Technology, 4K, Ethernet Channel, Audio Return Channel, 1440p and 1080p Full HD Resolution
  • Category 2 Certified - High-Speed 10.2 Gbps / 340 MHz (Supports Increased Refresh Rates and 48-Bit Deep Color)
  • Supports 4K x 2K Duel Stream, 4K, 1440p, 1080p, 1080i, 720p, 480p, and 480i Resolutions
  • Triple shielded heavy duty 28 AWG Premium Grade Cable with soft PVC Jacket
  • 24K Gold Plated Connectors promise accurate transmission of picture and audio

Cable Matters VGA and RCA Audio to HDMI Converter



Product Description

Overview
* VGA and RCA Audio to HDMI Converter converts PC audio/video to full-screen HDMI with simultaneous�audio output.
* Up-scales an analog video signal from a computer or VGA source to a high quality digital HD display. Cable Matters�VGA Audio to HDMI Converter supports a range of video resolutions. Also, it will take analog RCA audio as input.

Instructions
1 Connect a VGA source to the Converter input with a VGA cable (not included).
2 Next, connect the analog audio input ports using an RCA�cable (not included).
3 Finally, connect an HDMI-compliant display to the the HDMI output port. Audio signals pass to the amplifier from the Converter through the audio cables, taking analog audio and embedding it into the HDMI output.
4 Power up the Converter by plugging in the 5VDC line from the power supply. A clear picture will be displayed on the display.

Specifications
* Supports highest video resolution 1280x1024.
* Supports 165MHz/1.65Gbps per channel (6.75Gbps all channel) bandwidth.
* Supports 8bit per channel (24bit all channel) deep color
* FCC, CE compliant

Package Contents
* 1x VGA and RCA Audio to HDMI Converter
* 1x 5V DC Power Supply Adapter
* 1x User Manual



Product Details

  • Size: VGA & Audio to HDMI
  • Color: BLACK
  • Brand: Cable Matters
  • Dimensions: 1.00 pounds

Features

  • Conversion: Converts PC's VGA video and R/L audio into complete HDMI
  • Extra VGA and R/L audio outputs: the outputs could be connected back to PC's monitor and speakers
  • Manual adjusting button: Used for position the image precisely under some extreme condition
  • Easy to Use: Install in seconds, no need of setting
  • Comes with Cable Matters Limited One Year Warranty

Cable Matters Active Micro HDMI to VGA Male to Female Adapter with USB Power Cable in Black 3 Feet - Supports Audio



Product Description

Overview
* HDMI to VGA adapter is the most convenient and cost effective solution for connecting HDMI devices to VGA monitors or projectors.
* Cable Matters Micro HDMI to VGA M/F adapter features a built-in active IC chip to achieve better compatibility.

Instructions
1 Video setup: Choose between Duplicate and Extension mode in Control Panel > Display
2 Audio playback: Plug in the 3.5 mm stereo cable. Select a playback device in Control Panel > Sound
3 Plug in the included power cable if the HDMI source does not supply sufficient current

Specifications
* Input/Output Signal: Type D (Micro) HDMI digital/VGA analog
* Supported Resolutions: 480i/480p/576i/576p/800x600/720i/720p/1280x1024/1600x1200/1080i/1080p
* Supports 165MHz/1.65Gbps per channel (6.75Gbps all channel) bandwidth for HDMI
* Supports analog video output up to UXGA and 1080p with 10-bit DAC
* Vertical Frequency Range: 50/60Hz
* Audio Output: 3.5 mm stereo
* Power Requirements: Optional

Compatibility
HDMI to VGA conversion may post compatibility problems under the following conditions
* The HDMI source has different refresh rate than the VGA display
* The VGA display (projector, monitor or TV) does NOT support the following resolutions as output from the HDMI source (480i/480p/576i/576p/800x600/720i/720p/1280x1024/1600x1200/1080i/1080p)
* The HDMI output of the source device does NOT supply 5V/500mA current
* When using the Samsung Series 9 Laptops, please plug in the included Micro USB power cable

Package Contents
* Cable Matters�Micro HDMI to VGA Adapter
* 6 ft 3.5mm Stereo Cable
* 3 ft Micro USB Power Cable



Product Details

  • Size: Micro HDMI to VGA + Audio
  • Color: Black
  • Brand: Cable Matters
  • Dimensions: .6 pounds

Features

  • Comes with 3 ft USB Power Cable and 6 ft 3.5mm Stereo Cable
  • Built-in active IC chip converts digital HDMI signal into analog VGA video
  • Plug and play: No installation of any driver
  • Supports Kindle Fire HD and Samsung Series 9 Laptop
  • Comes with Cable Matters Limited One Year Warranty