001package net.filebot.format;
002
003public class FrameRate extends AutoUnitDecimal {
004
005        public FrameRate(double value) {
006                super(value);
007        }
008
009        @Override
010        public String getUnit() {
011                return " fps";
012        }
013
014        public static FrameRate parse(String s) {
015                double value = Double.parseDouble(s);
016                return new FrameRate(value);
017        }
018
019}