输入格式smpte-时间码

时间:2018-11-05 10:10:21

标签: html reactjs input timecodes

使用smpte-timecode设置输入格式的最佳方法是什么?

<Input 
                  placeholder="In"
                  autoFocus={true}
                  onChange={e => this.onChange(e)} 
                  type="time"
                  step="00.01" 
                  pattern="^(?:(?:([01]?\d|2[0-3]):)?([0-5]?\d):)?([0-5]?\d)$"
                  style={{fontSize: "16px", width: "100%"}}/>
              )}
onChange = (element, frameRate) => {
    const { form } = this.props;
    const keys = form.getFieldValue('keys');

    keys.forEach(function (value) {
      var inTc = Timecode(form.getFieldValue('1-in'), 25); // errors
      console.log(inTc.toString());
    });

这一直导致以下结果 错误:时间码字符串应为HH:MM:SS:FF或HH:MM:SS; FF

0 个答案:

没有答案