Image | ![]() |
EAN-13 | 9786302120523 ![]() |
Product Name | Captain Blood [VHS] |
Category | Electronics / Photography: A/V Media: Movie / TV |
Amazon.com | ![]() |
SKU | 1001-WS1501-A03010-6302120527 |
Price New | 3.32 US Dollars (curriencies) |
Price Used | 1.50 US Dollars (curriencies) |
Cast | Errol Flynn, Olivia de Havilland, Lionel Atwill, Basil Rathbone, Ross Alexander |
Binding | VHS Tape |
Format | Black & White, NTSC |
Run Time | 120 minutes |
Long Description | The swashbuckler had been around long before Errol Flynn drew a cutlass, but the Tasmanian-born bit player reinvigorated the genre with his mix of dashing good looks, haughty insolence, and alluring confidence. Adapted from the novel by Rafael Sabatini (who also penned The Sea Hawk ), this rousing adventure chronicles the travails of Peter Blood (Flynn), a righteous doctor unjustly sold into slavery for treating the wounds of rebels, a kind of British Dr. Mudd. Sent to a Jamaican plantation where he toils under the brutal whip of Lionel Atwill and seethes with passion for his fair niece (the astonishingly beautiful Olivia de Havilland), he escapes from bondage with his fellow prisoners and becomes the gentleman rogue pirate of the Caribbean. Director Michael Curtiz builds from one set piece to another, including a nimble beachside sword fight with pirate nemesis Basil Rathbone and climaxing with a grand sea battle that belies the film's modest budget. Flynn's bravado and charisma are apparent from his entrance, but once he leaps into action he takes command of the picture, overcoming his still-green dramatic skills with sheer personality. Captain Blood made stars of Flynn and de Havilland and catapulted Curtiz to the top ranks of Warner directors. The three reunited for some of the studio's best-loved adventures: The Charge of the Light Brigade , The Adventures of Robin Hood , and Dodge City . --Sean Axmaker |
Similar Items | 0097360652437: The Ten Commandments 9780790743158: Key Largo [VHS] 9786301977159: The Sea Hawk (Colorized Version) [VHS] 9780790759371: The Adventures of Robin Hood 9786303943008: Black Swan [VHS] 9781558808461: Creature from the Black Lagoon [VHS] 9786301977142: The Sea Hawk (Restored Uncut Version) [VHS] 9786302682625: Gentleman Jim [VHS] 9786304546383: The Adventures of Robin Hood [VHS] |
Created | 03-09-2013 1:15:43am |
Modified | 05-01-2020 9:13:39pm |
MD5 | 1f3943b562874e612da52c3213c0cc2a |
SHA256 | 6d4c83f909263170f96634ca62f33b9bbdb3c32240b53c95b082d9302f12e744 |
Search Google | by EAN or by Title |
Query Time | 0.0246229 |
Article of interest
This is a basic implementation of a service that provides retrieval access to the EANData.com UPC web site. Its was coded to verify basic proof-of-concept for development of another application and was not intended to provide be anything more than basic functionality in the retrieval of UPC data from the EANData.com web site.
There are several places where simple code was left in place rather than using more advanced Java features/methods to allow for easier understanding of junior developers. Not much time spent refactoring or cleaning up the code. It is provided as a starting point only.
It contains a Factory service that returns a service object configured using the UcpService.properties (see below) file found in the class path of the executed code. The UpcQueryService can respond with an implementation of the UpcResponse and supporting interfaces or with an InputStream allowing direct access to the response from the from the EANData.com web site.
JSR 353 is the Java API for JSON is currently under development (http://java.net/projects/json-processing-spec & http://java.net/projects/jsonp). The several Java JSON implementations seemed to be more than I was wanting/needing so I wrote a basic parser to provide JSON parsing capability needed. Its not perfect but is a good basic start.
Download the example source code
The UpcService.properties must be configured.
Url (Required)
provides the address used to query UPC data. The additional parameters are added to retrieve the requested information.
ApiKeyCode (Required)
Provided from EANData.com when your account is setup.
Mode (Required)
The manner in which the data will be retrieved from the EANData.com web site.
AutoRetrieveGraphics (Optional)
Boolean to indicate whether the graphics, when indicated by a Url, are to be automatically retrieved at the same time with the UPC data. Default is false. A factory method allows for the this property to be overridden at the time the UpcQueryService is created.