You won't be able to click it because "Clickable" attribute is set as false. But, you should be able to find element and read its "text" attribute to check playback time.
WebElement playBackTime = driver.findElement(By.id("time"));
System.out.println("Time : " + playBackTime.getAttribute("text"));