Home > processing error > nullpointerexception processing error

Nullpointerexception Processing Error

Contents

Sign in Pricing Blog Support Search GitHub This repository Watch 387 Star 2,996 Fork 894 processing/processing Code Issues 295 Pull requests processing nullpointerexception image 25 Projects 0 Wiki Pulse Graphs Common Errors Casey Reas edited

Processing Class Does Not Exist

this page Aug 25, 2014 · 3 revisions Pages 40 Home Advanced OpenGL Advanced OpenGL in Processing 2.x unexpected token void processing Build Instructions C.H.I.P. Changes Changes in 3.0 Command Line Common Errors Contributing to Processing with Pull Requests Core Values Examples Overview Export Info and Tips FAQ GSOC 14

Expecting Eof Found Processing

PDE 3.0 How to Install a Contributed Library ITP Processing Internships Library Basics Library Guidelines Library Overview Localization Multiple Sketchbooks OpenGL Issues Processing Fellowships Project List Raspberry Pi Report Bugs Repositories Running without a Display Serial Issues Style Guidelines Supported Platforms Templates Tool Basics Tool Guidelines Tool Ideas Tool Overview Troubleshooting Window Size and Full Screen Window processing error definition Size and Full Screen for Processing 2.0 Show 25 more pages… Clone this wiki locally Clone in Desktop unexpected token: something Translation: I’m expecting a piece of code here that you forgot, most likely some punctuation, like a semi-colon, parentheses, curly bracket, etc. This error is pretty much always caused by a typo. Unfortunately, where the error points you to can be misleading. The “something” is sometimes just fine and the actual error is caused by the line before or after that piece of code. Anytime you forget or include an improper comma, semi-colon, quote, parentheses, bracket, etc., you’ll get this error. Here are some examples: Incorrect: int val = 5 Correct: int val = 5; Found one too many { characters without a } to match it Translation: You forgot to close a block of code, such as an if statement, a loop, a function, a class, etc. Incorrect: void setup() { for (int i = 0; i < 10; i++) { if (i > 5) { line(0,i,i,0); println("i

to sign up and get a new user account. We're sorry about that inconvenience, but we

Processing Error Statistics

think it's better in the long run. The content on this

Processing 3 Nullpointerexception

forum will remain online. Index › Programming Questions & Help › Programs › What does NullPointerException Mean unexpected token processing Previous Topic | Next Topic Pages: 1 What does NullPointerException Mean? (Read 1510 times) milneandfletch YaBB Newbies Offline Posts: 14 What does NullPointerException Mean? Nov 28th, 2009, https://github.com/processing/processing/wiki/Common-Errors 4:00am Hi,I'm using the text command, and i am getting NullPointerException fromn the complier, what does this mean? The code is not working so i guess its not good!ThanksPete Cedric YaBB Moderator Offline Posts: 1838 Re: What does NullPointerException Mean? Reply #1 - Nov 28th, 2009, 4:09am so maybe show us your code https://processing.org/discourse/beta/num_1259409632.html and we can tell you whats wrong twitter.com/CedricKiefer milneandfletch YaBB Newbies Offline Posts: 14 Re: What does NullPointerException Mean? Reply #2 - Nov 28th, 2009, 4:17am Hi Cedric,Again thanks for your support.here is the code, its a little all over the place as its in development!I'm trying to read in a string from the serial port and then print it out in draw(), the string is printing out ok, i just cant get the text command to work!ThanksPete Code://Processing code to run with this example:import processing.serial.*; // import the Processing serial librarySerial myPort; // The serial portfloat bgcolor; // Background colorString fgcolor; // Fill colorString xpos, ypos; // Starting position of the ballchar sender = 'A';PFont font;String s;String mystring_ext;void setup() { size(200,200); // List all the available serial ports println(Serial.list()); // I know that the first port in the serial list on my mac // is always my Arduino module, so I open Serial.list()[0]. // Change the 0 to the appropriate number of the serial port /

Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum : Move this topic Cancel Programming Questions nighrage Resolving NullPointerException in Programming Questions • 2 years ago I am creating a sketch which https://forum.processing.org/topic/resolving-nullpointerexception is capable of publishing a scatter plot and parallel plot on two different pages. Both thesketcheswork perfectly when I run them individually but when I run them as a http://stackoverflow.com/questions/14732156/nullpointerexception-in-processing single sketch with two page then one sketch works but the other generates an error message. The code is provided below and the source of the error ishighlightedin processing error red. How do I resolve the NullPointerException error? import org.gicentre.utils.colour.*; // For colour tables. Table irisData; // All the Iris data. float[] colours; // Line colours. float[] maxValues; // Maximum data values for each column. ColourTable cTable; // Line colour table. void setup2() { size(600,600); smooth(); textAlign(CENTER,CENTER); textSize(18); nullpointerexception processing error readData(); } void drawPage1() { background(255); // The x-position of the two parallel axes. float x1 = width*.25; float x2 = width*.75; // Plot the data items. strokeWeight(0.7); for (int row=0; row

here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of 6.2 million programmers, just like you, helping each other. Join them; it only takes a minute: Sign up NullPointerException in processing up vote -1 down vote favorite I have to make a program that will ask for the user to enter 10 names, then sort the names alphabetically, then print each name, how many characters, and how many vowels. I think I am close but keep getting this error in processing. Can anyone help with this? `Exception in thread "Animation Thread" java.lang.NullPointerException at java.lang.String$CaseInsensitiveComparator.compare(String.java:1217) at java.lang.String$CaseInsensitiveComparator.compare(String.java:1211) at java.lang.String.compareToIgnoreCase(String.java:1258) at test.setup(test.java:35) at processing.core.PApplet.handleDraw(PApplet.java:2117) at processing.core.PGraphicsJava2D.requestDraw(PGraphicsJava2D.java:193) at processing.core.PApplet.run(PApplet.java:2020) at java.lang.Thread.run(Thread.java:662)` My code is: import javax.swing.*; String names[] = new String[10]; String temp; String nameInput; int length; int vowel = 0; char ch; length = 0; // store user input to array for (int i = 0; i < names.length; i++) { nameInput = JOptionPane.showInputDialog ("Enter a name:"); names[i] = nameInput; length = names[i].length(); // sort into alphabetical order for (int j = 0; j < names.length - 1; j++) { for (int k = j + 1; k < names.length; k++) { if (names[j].compareToIgnoreCase(names[k]) > 0) { temp = names[j]; names[j] = names[k]; names[k] = temp; } } } // count vowels char[] characters = nameInput.toCharArray(); for (int m = 0; m < characters.length; m++) { ch = nameInput.charAt(m); if ((ch == 'A') || (ch == 'a') || (ch == 'E') || (ch == 'e') || (ch == 'I') || (ch == 'i') || (ch == 'O') || (ch == 'o') || (ch == 'U') || (ch == 'u')) { vowel++; } } System.out.println("Name: " + names[i] + ", Length: " + length + ", Vowels: " + vowel); vowel =

 

Related content

administration error sample selection error

Administration Error Sample Selection Error table id toc tbody tr td div id toctitle Contents div ul li a href Administrative Error Letter a li li a href Administrative Error Federal Government a li li a href Admin Error Apology Letter a li ul td tr tbody table p or another blunder Types edit There are four relatedl types of administrative errors Data-processing error data processing error definition A category of administrative error that occurs in data p h id Administrative Error Letter p processing because of incorrect data entry incorrect computer programming or other error during p h id

credit card processing error codes

Credit Card Processing Error Codes table id toc tbody tr td div id toctitle Contents div ul li a href Credit Card Error Messages a li li a href Credit Card Machine Error Codes a li li a href Xbox Live Credit Card Error Codes a li ul td tr tbody table p SUMMARY Below you'll find explanations of decline codes you may have encountered as well as potential solutions Declines are made by the card-issuing bank not your software If your client does not believe their card should have relatedl declined please advise them to call the - on

credit card processing error code 200

Credit Card Processing Error Code table id toc tbody tr td div id toctitle Contents div ul li a href Error Code Credit Card a li li a href Ebay Payment Processing Error a li li a href Ebay Payment Processing Error a li ul td tr tbody table p the history of your tickets Article Rating Click to rate Rating s relatedl Home Knowledge Base Credit Card Processing Payments Credit Card Error Codes credit card declined code Actions Print Add Favorite Share BlinkList Blogmarks co mments del icio us Digg p h id Error Code Credit Card p Diigo

data processing error

Data Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href A Processing Error Occurred Collecting Data Using This Base Domain a li li a href Processing Error Definition a li li a href Processing Error Statistics a li ul td tr tbody table p or another blunder Types edit There are four types of administrative errors Data-processing error A category of relatedl administrative error that occurs in data processing because a processing error occurred collecting data of incorrect data entry incorrect computer programming or other error p h id A Processing Error

due to a processing error

Due To A Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href How Does The Supreme Court Define Due Process a li li a href Processing Error Statistics a li li a href Processing Error Definition a li ul td tr tbody table p p p Shoes Jewelry Women Men Girls Boys Baby Collectibles Fine Art Computers relatedl Courses Credit and Payment Cards Digital Music Electronics Gift Cards Grocery Gourmet Food Handmade Health Household Baby Care Home Business Services Home Kitchen Industrial Scientific Kindle Store Luggage Travel Gear Luxury Beauty Magazine Subscriptions

error processing common blocks before line

Error Processing Common Blocks Before Line table id toc tbody tr td div id toctitle Contents div ul li a href Fortran Common a li li a href Processing Null a li li a href Processing Error Definition a li ul td tr tbody table p subroutine xxx u real u common tstep nt t dt cfl nrk nrk max gamma zeta relatedl return end So I issue a command processing class does not exist like f testit f and all goes well But then I would like all my real p h id Fortran Common p numbers treated as

payment processing error

Payment Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href Ebay Unable To Process Paypal Payment a li li a href Paypal Error Message This Transaction Cannot Be Completed a li li a href Ebay Paypal Problems Today a li ul td tr tbody table p My Collections Followed searches MessagesNotification You are here Home Buying Guides Everything Else Every Other Thing PayPal relatedl Error When Attempting To Make Payment deleted Views paypal pay for ebay items Like Likes Comments Comment Like if this guide is helpful Please ebay cannot process paypal

payment processing error 601 ebay

Payment Processing Error Ebay table id toc tbody tr td div id toctitle Contents div ul li a href Paypal Pay For Ebay Items a li li a href Ebay Payment Processing Error a li li a href Ebay Payment Processing Error a li li a href Paypal Processing Error a li ul td tr tbody table p to PayPal Buying with PayPal Error Checkout input input input input input input input input input relatedl input input input CommunityCategoryBoardUsers input input turn on suggestions Auto-suggest helps ebay cannot process paypal payment you quickly narrow down your search results by suggesting

payment processing error 601

Payment Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href Paypal Pay For Ebay Items a li li a href Ebay Payment Processing Error a li li a href You Have Been Logged Out Of Paypal Please Select Payment Method a li ul td tr tbody table p to PayPal Buying with PayPal Error Checkout relatedl input input input input input input input input input input input input CommunityCategoryBoardUsers ebay cannot process paypal payment input input turn on suggestions Auto-suggest helps you quickly narrow down your search p h id Paypal Pay

paypal error 601

Paypal Error table id toc tbody tr td div id toctitle Contents div ul li a href Ebay Payment Processing Error a li li a href Paypal Processing Error a li ul td tr tbody table p Selling My Collections Followed searches MessagesNotification eBay Community Answer Center Discussion Boards Groups Announcements Seller Center Policies relatedl Archives facebook google plus instagram pinterest twitter THE ANSWER ebay cannot process paypal payment CENTER The Answer Center is your place to ask fellow eBay Community members paypal pay for ebay items questions about buying and selling on eBay and for you to share your

paypal error code 601

Paypal Error Code table id toc tbody tr td div id toctitle Contents div ul li a href Ebay Payment Processing Error a li li a href Paypal Processing Error a li li a href Paypal Not Working On Ebay a li ul td tr tbody table p to PayPal Buying with PayPal Error Checkout relatedl input input input input input input input input input input input input ebay cannot process paypal payment CommunityCategoryBoardUsers input input turn on suggestions Auto-suggest helps you quickly narrow down your paypal pay for ebay items search results by suggesting possible matches as you type

paypal payment error 601

Paypal Payment Error table id toc tbody tr td div id toctitle Contents div ul li a href Ebay Cannot Process Paypal Payment a li li a href Ebay Payment Processing Error a li li a href Paypal Processing Error a li li a href You Have Been Logged Out Of Paypal Please Select Payment Method a li ul td tr tbody table p to PayPal Buying with PayPal Error Checkout input input input input input input input input input input relatedl input input CommunityCategoryBoardUsers input input turn on suggestions Auto-suggest helps you p h id Ebay Cannot Process Paypal

processing error

Processing Error table id toc tbody tr td div id toctitle Contents div ul li a href Nullpointerexception Processing Image a li li a href Processing Classes a li li a href Processing Size a li ul td tr tbody table p correctly planned implementation methods Context Processing errors include all post-collection operations as well as p h id Nullpointerexception Processing Image p the printing of questionnaires Most processing errors occur in data for individual units although errors can also be introduced in the implementation of systems and estimates In survey data for example processing sample selection error errors may

processing error coordinate out of bounds

Processing Error Coordinate Out Of Bounds p Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum Move this topic Cancel Core Library Questions coloresque Weird problem coordinates out of bounds in Core Library Questions years ago I just took the relatedl movie sample code from the Processing website and when I want to run it using my own movie for which I also changed the height and width of the canvas it gives me the error ArrayIndexOutOfBoundsException Coordinate out of bounds What could possibly be wrong import processing video Movie theMov void setup size theMov new Movie this bird mov theMov play

processing error adventure quest

Processing Error Adventure Quest table id toc tbody tr td div id toctitle Contents div ul li a href Adventurequest a li li a href Aqw a li ul td tr tbody table p View this message relatedl in English YouTube aq worlds p h id Adventurequest p Learn more You're p h id Aqw p viewing YouTube in Greek You can change this preference below count total aq trainer processing error'' solution sharingan playlist p p Cheats What's New Register General Art Design Programming Market Place Giveaways Premium How MPGH Username Remember Me Password CSGO Hacks League of Legends

processing error inside serial init

Processing Error Inside Serial Init p Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum Move this topic Cancel Integration and Hardware stixan Error inside Serial init driving me crazy in Integration and Hardware years ago I am relatedl trying to connect to Lego NXT via Bluetooth using the Serial library After one succesful connection all I get now is this error message Error inside Serial init gnu io PortInUseException Unknown Application Having trawled the internet for every possible solution to this problem and still getting this sect error I am finally declaring myself checkmate sigh QUESTIONS - Does the version of

processing error c1041724

Processing Error C p games PC games eseutil mh Windows games Windows phone games Entertainment All Entertainment isinteg Movies TV Music Business Education Business Students educators Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove Microsoft Movies TV Devices Xbox All Microsoft devices Microsoft Surface All Windows PCs tablets PC accessories Xbox games Microsoft Lumia All Windows phones Microsoft HoloLens For business Cloud Platform Microsoft Azure Microsoft Dynamics Windows for business Office for business Skype for business Surface for business

processing error arrayindexoutofboundsexception

Processing Error Arrayindexoutofboundsexception table id toc tbody tr td div id toctitle Contents div ul li a href Arrayindexoutofboundsexception Processing a li ul td tr tbody table p Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum Move this topic Cancel Core Library Questions fach k ArrayIndexOutofBoundsException ERROR in Core Library Questions months ago Why this is saying relatedl ArrayIndexOutofBoundsException import processing serial Serial myPort float brightness p h id Arrayindexoutofboundsexception Processing p void setup size colorMode RGB println Serial list myPort arrayindexoutofboundsexception processing new Serial this Serial list void draw background while myPort available int inByte myPort read fill inByte beginShape

processing error during upload google calendar

Processing Error During Upload Google Calendar p p p Google p p p p here for a quick overview of the site Help Center Detailed answers to any questions you might have Meta Discuss the workings and policies of this site About Us Learn more about Stack Overflow the company Business Learn more about hiring developers or posting ads with us Stack Overflow Questions Jobs Documentation Tags Users Badges Ask Question x Dismiss Join the Stack Overflow Community Stack Overflow is a community of million programmers just like you helping each other Join them it only takes a minute Sign

processing error attempt to delete member that is in use

Processing Error Attempt To Delete Member That Is In Use p dimension table So when you try to incrementally process the dimension this problemas relatedl pops up I can incrementaly process the dimension with the original data and it all finishes ok Then I insert some records and incrementally process again and everythink ok Then I try to insert new records But for some reason the secuence or related key members for the new records are rejected in an incremental update The issue here is that when I insert new records that are related or joined with the main dimension

processing error no data received from tsmuxer

Processing Error No Data Received From Tsmuxer p S VCD HD DVD Blu-ray authoring multiAVCHD - author Blu-ray AVCHD Blu-ray relatedl players camcoders Viera TV HD DVD User Name Remember Me Password Register FAQ Calendar Today's Posts Search Search Forums Show Threads Show Posts Tag Search Advanced Search Go to Page Page of Last raquo Thread Tools Search this Thread Display Modes th December Link deank Programmer or just Join Date Oct Location Sofia Bulgaria Posts multiAVCHD - author Blu-ray AVCHD Blu-ray players camcoders Viera TV HD DVD Latest supported version version build as of July th Doownload links for

processing error in internet communication framework sap

Processing Error In Internet Communication Framework Sap table id toc tbody tr td div id toctitle Contents div ul li a href Soap Srt Processing Error In Internet Communication a li li a href Icmconninitserverssl Sapsslsessionstart Returned - a li li a href Icf Error When Receiving The Response Icm http connection failed a li li a href Icm http ssl error Sap a li ul td tr tbody table p and SafetyAsset p h id Soap Srt Processing Error In Internet Communication p NetworkAsset Operations and MaintenanceCommerceOverviewSubscription Billing and Revenue icf error when receiving the response icm http ssl

processing error null pointer exception

Processing Error Null Pointer Exception table id toc tbody tr td div id toctitle Contents div ul li a href Processing Nullpointerexception a li li a href Unexpected Token Processing a li li a href Expecting Eof Processing a li ul td tr tbody table p Sign in Pricing Blog Support Search GitHub option form This repository Watch Star Fork processing processing Code Issues Pull requests Projects Wiki Pulse relatedl Graphs Common Errors Casey Reas edited this page Aug processing nullpointerexception image middot revisions Pages Home Advanced OpenGL Advanced OpenGL in Processing x Build p h id Processing Nullpointerexception p

processing error inside serial

Processing Error Inside Serial p Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum Move this topic Cancel Integration and Hardware stixan Error inside Serial init driving me crazy relatedl in Integration and Hardware years ago I am trying to connect to Lego NXT via Bluetooth using the Serial library After one succesful connection all I get now is this error message Error inside Serial init gnu io PortInUseException Unknown Application Having trawled the internet for every possible solution to this problem and still getting this sect error I am finally declaring myself checkmate sigh QUESTIONS - Does the version of RXTX

processing error from inside the android tools

Processing Error From Inside The Android Tools p Sign In Register Categories Recent Discussions Unanswered Categories All Categories relatedl KAnnouncements Guidelines Common Questions Using Processing K Programming Questions K Questions about Code K How To K Hello Processing GLSL Shaders Library Questions K Hardware Integration Other Languages K Kinect Arduino Raspberry PI Questions about Modes K Android Mode JavaScript Mode Python Mode Questions about Tools Developing Processing Create Announce Libraries Create Announce Modes Create Announce Tools Summer of code Summer of Code Summer of Code p js p js Programming Questions p js Library Questions p js Development Questions General

processing error nullpointerexception

Processing Error Nullpointerexception table id toc tbody tr td div id toctitle Contents div ul li a href Processing Array a li li a href Processing Random a li ul td tr tbody table p Sign in Pricing Blog Support Search GitHub option form This repository Watch relatedl Star Fork processing processing Code Issues processing nullpointerexception image Pull requests Projects Wiki Pulse Graphs Common Errors processing nullpointerexception Casey Reas edited this page Aug middot revisions Pages Home Advanced OpenGL Advanced unexpected token processing OpenGL in Processing x Build Instructions C H I P Changes Changes in Command Line Common Errors

processing error has occurred c1041724

Processing Error Has Occurred C p games PC games eseutil mh Windows games Windows phone games Entertainment All Entertainment isinteg Movies TV Music Business Education Business Students educators Developers Sale Sale Find a store Gift cards Products Software services Windows Office Free downloads security Internet Explorer Microsoft Edge Skype OneNote OneDrive Microsoft Health MSN Bing Microsoft Groove Microsoft Movies TV Devices Xbox All Microsoft devices Microsoft Surface All Windows PCs tablets PC accessories Xbox games Microsoft Lumia All Windows phones Microsoft HoloLens For business Cloud Platform Microsoft Azure Microsoft Dynamics Windows for business Office for business Skype for business Surface

processing error the constructor is undefined

Processing Error The Constructor Is Undefined p Tool DevelopmentEvents and OpportunitiesGeneral Discussion Sub forum Move this topic Cancel Programming Questions eesal Class Name returns The constructor is undefined error in relatedl Programming Questions months ago Hi I think there is a bug in the class' naming I'm a newbie to Processing ands was experimenting with classes so I created this code that draws a simple title bar It works like this but the class and constructor were originally named TitleBar and it didn't work The error was The constructor 'TitleBar' is undefined I reviewed my code with the Objects tutorial

processing error outlook.exe

Processing Error Outlook exe p stuck at Processing stopped working freezes or hangs Applies To Outlook Outlook Less Applies To Outlook Outlook More relatedl Which version do I have More Did you get an Outlook not responding error Is Outlook stuck on a screen that simply says Processing Or does Outlook hang freeze or stop working when you're opening a file or sending an email message There are a number of possible reasons for Outlook to behave this way We've presented the potential solutions in order from quickest to most time consuming Note September When you search using the Advanced

processing error in source system reported

Processing Error In Source System Reported p and SafetyAsset NetworkAsset Operations and MaintenanceCommerceOverviewSubscription Billing and Revenue ManagementMaster Data Management for CommerceOmnichannel CommerceFinanceOverviewAccounting and Financial CloseCollaborative Finance OperationsEnterprise Risk and ComplianceFinancial Planning and AnalysisTreasury and Financial Risk ManagementHuman ResourcesOverviewCore Human Resources and PayrollHuman Capital AnalyticsTalent ManagementTime and Attendance ManagementManufacturingOverviewManufacturing NetworkManufacturing OperationsResponsive ManufacturingMarketingOverviewMarket with Speed and AgilityUnique Customer ExperiencesReal-Time Customer InsightsR D EngineeringOverviewDesign NetworkDesign OrchestrationProject and Portfolio ManagementSalesOverviewCollaborative Quote to CashSales Force AutomationSales Performance ManagementSelling Through Contact CentersServiceOverviewEfficient Field Service ManagementOmnichannel Customer ServiceTransparent Service Process and OperationsSourcing and ProcurementOverviewContingent Workforce ManagementDirect ProcurementSelf-Service ProcurementServices ProcurementStrategic Sourcing and Supplier ManagementSupply ChainOverviewDemand ManagementDemand NetworkLogistics NetworkManufacturing

processing error no data received from tsmuxer trying again

Processing Error No Data Received From Tsmuxer Trying Again p S VCD HD DVD Blu-ray authoring multiAVCHD - author relatedl Blu-ray AVCHD Blu-ray players camcoders Viera TV HD DVD User Name Remember Me Password Register FAQ Calendar Today's Posts Search Search Forums Show Threads Show Posts Tag Search Advanced Search Go to Page Page of Last raquo Thread Tools Search this Thread Display Modes th December Link deank Programmer or just Join Date Oct Location Sofia Bulgaria Posts multiAVCHD - author Blu-ray AVCHD Blu-ray players camcoders Viera TV HD DVD Latest supported version version build as of July th Doownload